Are the any libraries which contain implementation of the same functionality as String#indexOf(String str), but fast (e.g. consumes linear time, Knuth-Morris-Pratt algorithm or something like this)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
I found the jstringsearch library on SourceForge, and it includes an implementation of KMP and various other string search algorithms. On the plus side:
On the minus side:
There's an associated page about string search performance here. It includes benchmark numbers that were apparently produced using the libraries, and links to descriptions of the algorithms. |
||||
|
|
|
There's StringSearch with implementations of the Boyer-Moore and the Shift-Or algorithms. |
|||||||||||
|