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.
What character shift tables does Boyer-Moore's search algorithm use? Explanation: Boyer-Moore's search algorithm uses both good and bad character shift tables whereas quick search algorithm uses only bad character shift tables.
The Shift OR algorithm uses bitwise techniques to check whether the given pattern is present in the string or not. It is efficient if the pattern length is lesser than the memory-word size of the machine (In this article at OPENGENUS, we consider the memory-word size to be 64bits).
Boyer-Moore-Horspool is an algorithm for finding substrings into strings. This algorithm compares each characters of substring to find a word or the same characters into the string. When characters do not match, the search jumps to the next matching position in the pattern by the value indicated in the Bad Match Table.
In general, the algorithm runs faster as the pattern length increases. The key features of the algorithm are to match on the tail of the pattern rather than the head, and to skip along the text in jumps of multiple characters rather than searching every single character in the text.
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
....xyzabc.... <-text
....uabc <- pattern
^
mismatch
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
v
...xyzazc...
....uazc
..uazc
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 suffix m
of the pattern - if there is such an occurrence.
So for example
v
....abcdabceabcfabc...
...xabcfabcfabc
...xabcfabcfabc
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 of f
) 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.
v
...robocab....
abacab
abacab
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,
SSIMPLE EXAMPLE
EXAMPLE
^
the matched suffix is MPLE
, and the mismatched text character is I
. So the bad character shift looks for the last occurrence of I
in the initial part of the pattern. There is none, so that bad character shift would shift the pattern so that the mismatched I
is one before the start of the pattern
SSIMPLE EXAMPLE
EXAMPLE
and the good suffix shift looks for the rightmost occurrence of MPLE
in the pattern not preceded by an A
, or the longest suffix of MPLE
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 string E
, and the empty string. The longest is obviously the nonempty string, so the good suffix shift aligns the one-character suffix E
in the matched part of the text with the one-character prefix of the pattern
SSIMPLE EXAMPLE
EXAMPLE
The 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 the P
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 by A
), so the good suffix shift aligns the empty suffix of the matched part of the text (the boundary between the E
and the space) with the empty prefix of the pattern (the empty string preceding the T
), resulting in
SSIMPLE EXAMPLE
TXAMPLE
(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 initial T
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With