Two-way string-matching algorithm
Template:Short description Template:Infobox algorithm
In computer science, the two-way string-matching algorithm is a string-searching algorithm, discovered by Maxime Crochemore and Dominique Perrin in 1991.[1] It takes a pattern of size m, called a “needle”, preprocesses it in linear time O(m), producing information that can then be used to search for the needle in any “haystack” string, taking only linear time O(n) with n being the haystack's length.
The two-way algorithm can be viewed as a combination of the forward-going Knuth–Morris–Pratt algorithm (KMP) and the backward-running Boyer–Moore string-search algorithm (BM). Like those two, the 2-way algorithm preprocesses the pattern to find partially repeating periods and computes “shifts” based on them, indicating what offset to “jump” to in the haystack when a given character is encountered.
Unlike BM and KMP, it uses only O(log m) additional space to store information about those partial repeats: the search pattern is split into two parts (its critical factorization), represented only by the position of that split. Being a number less than m, it can be represented in ⌈log₂ m⌉ bits. This is sometimes treated as "close enough to O(1) in practice", as the needle's size is limited by the size of addressable memory; the overhead is a number that can be stored in a single register, and treating it as O(1) is like treating the size of a loop counter as O(1) rather than log of the number of iterations. The actual matching operation performs at most 2n − m comparisons.[2]
Breslauer later published two improved variants performing fewer comparisons, at the cost of storing additional data about the preprocessed needle:[3]
- The first one performs at most n + ⌊(n − m)/2⌋ comparisons, ⌈(n − m)/2⌉ fewer than the original. It must however store ⌈log[[Golden ratio|Template:Nowrap]] m⌉ additional offsets in the needle, using O(log2 m) space.
- The second adapts it to only store a constant number of such offsets, denoted c, but must perform n + ⌊(Template:Frac + ε) * (n − m)⌋ comparisons, with ε = Template:Frac(Fc+2 − 1)−1 = O(Template:Nowrap−c) going to zero exponentially quickly as c increases.
The algorithm is considered fairly efficient in practice, being cache-friendly and using several operations that can be implemented in well-optimized subroutines. It is used by the C standard libraries glibc, newlib, and musl, to implement the memmem and strstr family of substring functions.[4][5][6] As with most advanced string-search algorithms, the naïve implementation may be more efficient on small-enough instances;[7] this is especially so if the needle isn't searched in multiple haystacks, which would amortize the preprocessing cost.
Critical factorization
Before we define critical factorization, we should define:[1]
- A factorization is a partition Template:Math of a string Template:Math. For example,
("Wiki","pedia")is a factorization of"Wikipedia". - A period of a string Template:Math is an integer Template:Math such that all characters Template:Math-distance apart are equal. More precisely, Template:Math holds for any integer Template:Math. This definition is allowed to be vacuously true, so that any word of length Template:Math has a period of Template:Math. To illustrate, the 8-letter word
"educated"has period 6 in addition to the trivial periods of 8 and above. The minimum period of Template:Math is denoted as Template:Math. - A repetition Template:Math in Template:Math is a non-empty string such that:
- Template:Math is a suffix of Template:Math or Template:Math is a suffix of Template:Math;
- Template:Math is a prefix of Template:Math or Template:Math is a prefix of Template:Math;
- In other words, Template:Math occurs on both sides of the cut with a possible overflow on either side. Examples include
"an"for("ban","ana")and"voca"for("a","vocado"). Each factorization trivially has at least one repetition: the string Template:Math.[2]
- A local period is the length of a repetition in Template:Math. The smallest local period in Template:Math is denoted as Template:Math. Because the trivial repetition Template:Math is guaranteed to exist and has the same length as Template:Math, we see that Template:Math.
- A critical factorization is a factorization Template:Math of Template:Math such that Template:Math. The existence of a critical factorization is provably guaranteed.[1] For a needle of length Template:Math in an ordered alphabet, it can be computed in Template:Math comparisons, by computing the lexicographically larger of two ordered maximal suffixes, defined for order ≤ and ≥.[6]
The algorithm
The algorithm starts by critical factorization of the needle as the preprocessing step. This step produces the index (starting point) of the periodic right-half, and the period of this stretch. The suffix computation here follows the authors' formulation. It can alternatively be computed using the Duval's algorithm, which is simpler and still linear time but slower in practice.[8]
Shorthand for inversion.
function cmp(a, b)
if a > b return 1
if a = b return 0
if a < b return -1
function maxsuf(n, rev)
l ← len(n)
p ← 1 currently known period.
k ← 1 index for period testing, 0 < k <= p.
j ← 0 index for maxsuf testing. greater than maxs.
i ← -1 the proposed starting index of maxsuf
while j + k < l
cmpv ← cmp(n[j + k], n[i + k])
if rev
cmpv ← -cmpv invert the comparison
if cmpv < 0
Suffix (j+k) is smaller. Period is the entire prefix so far.
j ← j + k
k ← 1
p ← j - i
else if cmpv = 0
They are the same - we should go on.
if k = p
We are done checking this stretch of p. reset k.
j ← j + p
k ← 1
else
k ← k + 1
else
Suffix is larger. Start over from here.
i ← j
j ← j + 1
p ← 1
k ← 1
return [i, p]
function crit_fact(n)
[idx1, per1] ← maxsuf(n, false)
[idx2, per2] ← maxsuf(n, true)
if idx1 > idx2
return [idx1, per1]
else
return [idx2, per2]
The comparison proceeds by first matching for the right-hand-side, and then for the left-hand-side if it matches. Linear-time skipping is done using the period.
function match(n, h)
nl ← len(n)
hl ← len(h)
[l, p] ← crit_fact(n)
P ← {} set of matches.
Match the suffix.
Use a library function like memcmp, or write your own loop.
if n[0] ... n[l] = n[l+1] ... n[l+p]
P ← {}
pos ← 0
s ← 0
TODO. At least put the skip in.