Overview
The most basic case of string searching involves one (often very long) string, sometimes called the ''haystack'', and one (often very short) string, sometimes called the ''needle''. The goal is to find one or more occurrences of the needle within the haystack. For example, one might search for ''to'' within: Some books are to be tasted, others to be swallowed, and some few to be chewed and digested. One might request the first occurrence of "to", which is the fourth word; or all occurrences, of which there are 3; or the last, which is the fifth word from the end. Very commonly, however, various constraints are added. For example, one might want to match the "needle" only where it consists of one (or more) complete words—perhaps defined as ''not'' having other letters immediately adjacent on either side. In that case a search for "hew" or "low" should fail for the example sentence above, even though those literal strings do occur. Another common example involves "normalization". For many purposes, a search for a phrase such as "to be" should succeed even in places where there is something else intervening between the "to" and the "be": *More than one space *Other "whitespace" characters such as tabs, non-breaking spaces, line-breaks, etc. *Less commonly, a hyphen or soft hyphen *In structured texts, tags or even arbitrarily large but "parenthetical" things such as footnotes, list-numbers or other markers, embedded images, and so on. Many symbol systems include characters that are synonymous (at least for some purposes): *Latin-based alphabets distinguish lower-case from upper-case, but for many purposes string search is expected to ignore the distinction. *Many languages include ligatures, where one composite character is equivalent to two or more other characters. *Many writing systems involve diacritical marks such as accents or vowel points, which may vary in their usage, or be of varying importance in matching. *DNA sequences can involve non-coding segments which may be ignored for some purposes, or polymorphisms that lead to no change in the encoded proteins, which may not count as a true difference for some other purposes. * Some languages have rules where a different character or form of character must be used at the start, middle, or end of words. Finally, for strings that represent natural language, aspects of the language itself become involved. For example, one might wish to find all occurrences of a "word" despite it having alternate spellings, prefixes or suffixes, etc. Another more complex type of search isExamples of search algorithms
Naive string search
A simple and inefficient way to see where one string occurs inside another is to check at each index, one by one. First, we see if there's a copy of the needle starting at the first character of the haystack; if not, we look to see if there's a copy of the needle starting at the second character of the haystack, and so forth. In the normal case, we only have to look at one or two characters for each wrong position to see that it is a wrong position, so in the average case, this takes O(''n'' + ''m'') steps, where ''n'' is the length of the haystack and ''m'' is the length of the needle; but in the worst case, searching for a string like "aaaab" in a string like "aaaaaaaaab", it takes O(''nm'')Finite-state-automaton-based search
In this approach, backtracking is avoided by constructing a deterministic finite automaton (DFA) that recognizes stored search string. These are expensive to construct—they are usually created using the powerset construction—but are very quick to use. For example, the DFA shown to the right recognizes the word "MOMMY". This approach is frequently generalized in practice to search for arbitraryStubs
Knuth–Morris–Pratt computes a DFA that recognizes inputs with the string to search for as a suffix, Boyer–Moore starts searching from the end of the needle, so it can usually jump ahead a whole needle-length at each step. Baeza–Yates keeps track of whether the previous ''j'' characters were a prefix of the search string, and is therefore adaptable to fuzzy string searching. The bitap algorithm is an application of Baeza–Yates' approach.Index methods
Faster search algorithms preprocess the text. After building a substring index, for example a suffix tree or suffix array, the occurrences of a pattern can be found quickly. As an example, a suffix tree can be built in time, and all occurrences of a pattern can be found in time under the assumption that the alphabet has a constant size and all inner nodes in the suffix tree know what leaves are underneath them. The latter can be accomplished by running a DFS algorithm from the root of the suffix tree.Other variants
Some search methods, for instance trigram search, are intended to find a "closeness" score between the search string and the text rather than a "match/non-match". These are sometimes called "fuzzy" searches.Classification of search algorithms
Classification by a number of patterns
The variousSingle-pattern algorithms
In the following compilation, ''m'' is the length of the pattern, ''n'' the length of the searchable text, and ''k'' = , Σ, is the size of the alphabet. :1.Asymptotic times are expressed using O, Ω, and Θ notation. :2.Used to implement the ''memmem'' and ''strstr'' search functions in the glibc and musl C standard libraries. :3.Can be extended to handle approximate string matching and (potentially-infinite) sets of patterns represented asAlgorithms using a finite set of patterns
In the following compilation, ''M'' is the length of the longest pattern, ''m'' their total length, ''n'' the length of the searchable text, ''o'' the number of occurrences.Algorithms using an infinite number of patterns
Naturally, the patterns can not be enumerated finitely in this case. They are represented usually by a regular grammar orClassification by the use of preprocessing programs
Other classification approaches are possible. One of the most common uses preprocessing as main criteria.Classification by matching strategies
Another one classifies the algorithms by their matching strategy: * Match the prefix first (Knuth–Morris–Pratt, Shift-And, Aho–Corasick) * Match the suffix first (Boyer–Moore and variants, Commentz-Walter) * Match the best factor first (BNDM, BOM, Set-BOM) * Other strategy (Naïve, Rabin–Karp)See also
* Sequence alignment * Graph matching *References
External links