Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

substring algorithm

Can anyone point to best algorithm for substring search in another string? or search for a char array in another char array?

like image 788
Satish Avatar asked Aug 11 '09 15:08

Satish


3 Answers

The best from what point of view? Knuth-Morris-Pratt is a good one. You can find more of them discussed on the Wikipedia entry for string searching algorithms.

like image 157
mmx Avatar answered Nov 15 '22 10:11

mmx


It depends on what types of searching you are doing. Specific substring over a specific string? Specific substring over many different strings? Many different substrings over a specific string?

Here's a popular algorithm for a specific substring over many different strings.

like image 23
John Calsbeek Avatar answered Nov 15 '22 08:11

John Calsbeek


Boyer-Moore algorithm: http://en.wikipedia.org/wiki/Boyer–Moore_string_search_algorithm

like image 39
RBarryYoung Avatar answered Nov 15 '22 08:11

RBarryYoung