What are the available string matching algorithms besides Knuth-Morris-Pratt, Rabin-Karp and likes of it?
What are the available string matching algorithms besides Knuth-Morris-Pratt, Rabin-Karp and likes of it?
1.9k Views Asked by BGV At
3
There are 3 best solutions below
0
On
This page has good brief descriptions of many algorithms: http://www-igm.univ-mlv.fr/~lecroq/string/index.html
0
On
Simone Faro and Thierry Lecroq provide a C implementation and references to 86 exact string matching algorithms on "String Matching Algorithms Research Tool" .
They also provide a framework to benchmark the string matching algorithms:
____________________________________________________________
Experimental results on englishTexts
Searching for a set of 200 patterns with length 128
Testing 5 algorithms
- [1/5] BM ..................[OK] 0.88 ms
- [2/5] EPSM ................[OK] 0.38 ms
- [3/5] KMP .................[OK] 6.23 ms
- [4/5] KR ..................[OK] 1.84 ms
- [5/5] TW ..................[OK] 2.70 ms
algorithms
- BM = Boyer Moore (1977)
- EPSM = Exact Packed String Matching algorithm (2013)
- KMP = Knuth Morris-Pratt (1977)
- KR = Karp Rabin (1987)
- TW = Two Way (1991)
A well cited compendium of these algorithms can be found in:
http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.133.4896&rep=rep1&type=pdf
Included are the following algorithms:
plus about 15 others.
BTW, you might want to clarify if you are also interested in string similarity algorithms (e.g., Levenshtein distance, etc), which are closely related, if you are indeed interested in that.