| No DBLP profile for the author, no proofs on site, fastest algorithm known "to me" qualifier, no results for "suffix tree" on page, not a good sign. EDIT: Am I missing something??? Complexity analysis according to the author:
m = search term, n = text O(m) preprocessing -- that's right, O(search term). And
O(n times m) worst-case query string search, so the worst case traverses the whole text. Now compare that to suffix trees: O(n) preprocessing
O(m) string search where worst case complexity is linear in search term. |
I concur with the other commenters that it's silly for you to complain about his not comparing his online string-search algorithm against offline string-search algorithms that search an index of the text, such as suffix-tree algorithms.