*** Welcome to piglix ***

String searching


In computer science, string searching algorithms, sometimes called string matching algorithms, are an important class of string algorithms that try to find a place where one or several strings (also called patterns) are found within a larger string or text.

Let Σ be an alphabet (finite set). Formally, both the pattern and searched text are vectors of elements of Σ. The Σ may be a usual human alphabet (for example, the letters A through Z in the Latin alphabet). Other applications may use binary alphabet (Σ = {0,1}) or DNA alphabet (Σ = {A,C,G,T}) in bioinformatics.

In practice, how the string is encoded can affect the feasible string search algorithms. In particular if a variable width encoding is in use then it is slow (time proportional to N) to find the Nth character. This will significantly slow down many of the more advanced search algorithms. A possible solution is to search for the sequence of code units instead, but doing so may produce false matches unless the encoding is specifically designed to avoid it.

The various algorithms can be classified by the number of patterns each uses.

Let m be the length of the pattern, n be the length of the searchable text and k = |Σ| be the size of the alphabet.

The Boyer–Moore string search algorithm has been the standard benchmark for the practical string search literature.

Naturally, the patterns can not be enumerated finitely in this case. They are represented usually by a regular grammar or regular expression.

Other classification approaches are possible. One of the most common uses preprocessing as main criteria.

Another one classifies the algorithms by their matching strategy:


...
Wikipedia

...