z-algorithm
There are 17 repositories under z-algorithm topic.
KHvic/algorithms
Advance algorithm implementations
asherLZR/z-algorithm-visualised
Gusfield's Z-algorithm is used as a pre-processing step on the pattern as input to string pattern-matching algorithms like KMP and Boyer-Moore.
paras2411/Algorithms
Algorithms useful for CS graduates
ks-amit/Competitive-Programming
All you need to save time :p
jacobjinkelly/sequencing
Fast alignment of genomic sequences using Boyer-Moore with linear time construction of indexes using Z algorithm.
jumbuna/data-structures-algorithms
Common Data Structures And Algorithms Implemented In C++. FOR LEARNING PURPOSES ONLY
visheshsinha/DNA-Sequencing
Get Started with DNA Sequencing working with .FastQ and .FastA file formats and performing Pattern Matching Algorithms (Exact & Approximate).
AleksaVukadinovic/KIAA
Materijali i rokovi za kurs konstrukcija i analiza algoritama za I smer na Matematickom fakultetu.
ashutosh65000/Algorithms
Deals with the Algorithms along with the explanation.
dberg/strings
daniberg.com
shavidze/Codeforces
Problems seen and solved on the https://codeforces.com/ website
Anushk2001/Analysis-of-Various-String-Algorithms
Here I have discussed various string algorithms, including the popular pattern matching algorithms
Edurz135/StringSearchingAlgorithms
🔎 Comparison of string pattern searching algorithms.
jesshew/lzss-encoder-decoder
Implementation of LZSS, a lossless data compression algorithm by using Z algorithm, Huffman and Elias encoding method.
npar0005/js-z-algorithm
A linear time string preprocessing algorithm in JavaScript. Can be used for linear or even sub-linear time pattern matching if used with other algorithms (such as Boyer-Moore with Galil's optimisation)
darian-catalin-cucer/z-algorithm
The Z Algorithm is a linear-time string matching algorithm used to find all the occurrences of a pattern string in a text string. It uses a preprocessing step to create a Z array, which stores the length of the longest common prefix of the text and a suffix starting from a specific position.
ruchirmehta07/Analysis-of-Various-String-Algorithms
Here we have discussed various string algorithms, including the popular pattern matching algorithms like KMP, Z, Rabin Karp, etc as a part of Design and Analysis of Algorithms course under the guidance of Dr. Kapil Ahuja