Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)?

share|improve this question

2 Answers

I found the jstringsearch library on SourceForge, and it includes an implementation of KMP and various other string search algorithms.

On the plus side:

  • It is Mavenized.
  • It is open sourced.

On the minus side:

  • Not in Maven Central
  • It is GPL ... which may be problematic for some projects.
  • Javadoc is non-existent (based on my sampling).
  • Class names are all acronyms ... especially unhelpful given the lack of javadoc.
  • There is no public Maven site.
  • The tests are a joke. (Literally! Look at the AppTest class!)
  • and ...
  • The package name com.javacodegeeks.jstringsearch

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.

share|improve this answer
+1 for the find and quick review – WhiteFang34 Apr 6 '11 at 10:56

There's StringSearch with implementations of the Boyer-Moore and the Shift-Or algorithms.

share|improve this answer
Thanks for link. Concerning code - I have the same one prewritten for algo contests, but this is not what I am looking for – sergdev Apr 6 '11 at 10:34
Just out of interest: which algorithm does String.indexOf() use? – Joseph Ottinger Apr 6 '11 at 11:11
@Joseph: String.indexOf uses a simple (worst time O(n·m)) search: first a linear search for the first character of the needle, than comparison of the following characters until one does not match, repeat. (At least in the implementation I looked at, 1.6.0_13, Sun VM). The same static implementation method is used for String, StringBuffer and StringBuilder. – Paŭlo Ebermann Apr 6 '11 at 12:03
don't you need to somehow initialize (or at least assign at all to) your partial match table t? – Paŭlo Ebermann Apr 6 '11 at 12:04
Removed incomplete Knuth-Morris-Pratt implementation since OP is looking for libraries. – WhiteFang34 Apr 6 '11 at 17:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.