I have been trying to understand shift rules in Boyer–Moore string search algorithm but haven't understood them. I read here on wikipedia but that is too complex !
It will be of great help if someone lists the rule in a simple manner.
I have been trying to understand shift rules in Boyer–Moore string search algorithm but haven't understood them. I read here on wikipedia but that is too complex !
It will be of great help if someone lists the rule in a simple manner.
There are two heuristics: bat symbol heuristic and good pattern heuristic.
First, you know, needle comparison starts from its end. So, if characters do not match needle shifted such at least compared character in haystack would match needle. E. g. needle is "ABRACADABRA", and current caracter in haystack is "B" it does not match last "A", and also does not match previous "R", so shift by one is pointless, there will be no match. But "B" match 2-th from the end character in needle. So we would shift needle at least by 2 positions. If current character in haystack does not match any in needle, needle have to be shifted beyond current character. In other words we shift pattern until current character in haystack match character in needle, or whole needle is shifted beyond.
Amount of shift is calculated and stored in array, so for "ABRACADABRA" it would be: ['R'] = 1, ['B'] = 2, ['D'] = 4, etc.
Second, if found match for at least "ABRA" in haystack (but no full match) needle can be shifted so next "ABRA" will match.
Amount of shift for matched part is also precalculated: e. g. ['A'] = 3, ['RA'] = 11, ['BRA'] = 11, ['ABRA'] = 7, ['DABRA'] = 7...
This is not full explantaion of all corner cases, but main idea of algorithm.
In the Boyer-Moore algorithm, you start comparing pattern characters to text characters from the end of the pattern. If you find a mismatch, you have a configuration of the type
Now the bad character shift means to shift the pattern so that the text character of the mismatch is aligned to the last occurrence of that character in the initial part of the pattern (pattern minus last pattern character), if there is such an occurrence, or one position before the pattern if the mismatched character doesn't appear in the initial part of the pattern at all.
That could be a shift to the left, if the situation is
so that alone doesn't guarantee a progress.
The other shift, the good suffix shift, aligns the matched part of the text,
m
, with the rightmost occurrence of that character sequence in the pattern that is preceded by a different character (including none, if the matched suffix is also a prefix of the pattern) than the matched suffixm
of the pattern - if there is such an occurrence.So for example
would lead to a good suffix shift of four positions, since the matched part
m = abcfabc
occurs in the pattern four places left of its suffix-occurrence and is preceded by a different character there (x
instead off
) than in the suffix position.If there is no complete occurrence of the matched part in the pattern preceded by a different character than the suffix, the good suffix shift aligns a suffix of the matched part of the text with a prefix of the pattern, choosing maximal overlap, e.g.
The good suffix shift always shifts the pattern to the right, so guarantees progress.
Then, on every mismatch the advances of the bad character shift and the good suffix shift are compared, and the greater is chosen. It is explained in greater depth by Christian Charras and Thierry Lecroq here, along with many other string searching algorithms.
For the example you mentioned in the comments,
the matched suffix is
MPLE
, and the mismatched text character isI
. So the bad character shift looks for the last occurrence ofI
in the initial part of the pattern. There is none, so that bad character shift would shift the pattern so that the mismatchedI
is one before the start of the patternand the good suffix shift looks for the rightmost occurrence of
MPLE
in the pattern not preceded by anA
, or the longest suffix ofMPLE
that is a prefix of the pattern. There is no complete occurrence of the matched part in the pattern before the suffix, so the longest suffix of the matched part that is also a prefix of the pattern determines the good suffix shift. In this case, the two suffixes of the matched part that are prefixes of the pattern are the single-character stringE
, and the empty string. The longest is obviously the nonempty string, so the good suffix shift aligns the one-character suffixE
in the matched part of the text with the one-character prefix of the patternThe good suffix shift shifts the pattern farther right, so that is the chosen shift.
Then there is an immediate mismatch at the last pattern position, and then the bad character shift aligns the
P
in the text with theP
in the pattern (and the good suffix shift need not be considered at all if the mismatch occurs at the last pattern character, since in that case, it would never produce a larger shift than the bad character shift).Then we have the complete match.
In the variant with the pattern
TXAMPLE
, the good suffix shift finds that no non-empty suffix of the matched part is a prefix of the pattern (and there is no occurrence of the complete matched part in the pattern not preceded byA
), so the good suffix shift aligns the empty suffix of the matched part of the text (the boundary between theE
and the space) with the empty prefix of the pattern (the empty string preceding theT
), resulting in(then in the next step, the bad character shift aligns the two
L
s, and the next mismatch in the step thereafter occurs at the initialT
of the pattern).There's a good visualization here.
(EDIT: There's also a very good explanation with both examples and an example of how to implement the preprocessing steps here.)
General rules:
What I've just described is the "bad character" rule. The "good suffix" rule gives another option for shifting; whichever shifts farther is the one you should take. It's entirely possible to implement the algorithm without the good suffix rule, but it will be less efficient once the indices are built up.
The good-suffix rule requires that you also know where to find each multi-character substring of the pattern. When you hit a mismatch (checking, as always, from right to left), the good-suffix shift moves the pattern to a point where the letters that did already match will do so again. Alternatively, if the part that matched is unique in the pattern, you know you can skip all the way past it, because if it didn't match when lined up with the sole occurrence, it can't possibly match when lined up with any other part of the pattern.
For example, let's consider the following situation:
I have two options here:
and I should take whichever one lets me shift farther.
If you're still confused, try asking a more specific question; it's hard to be clear when we don't know where you're stuck.