vote up 4 vote down star
3

For the Boyer-Moore algorithm to be worst-case linear, the computation of the mis-match table must be O(m). However, a naive implementation would loop through all suffixs O(m) and all positions in that that suffix could go and check for equality... which is O(m3)!

Below is the naive implementation of table building algorithm. So this question becomes: How can I improve this algorithm's runtime to O(m)?

def find(s, sub, no):
    n = len(s)
    m = len(sub)

    for i in range(n, 0, -1):
    	if s[max(i-m, 0): i] == sub[max(0, m-i):] and \
    		(i-m < 1 or s[i-m-1] != no):
    		return n-i

    return n

def table(s):
    m = len(s)
    b = [0]*m

    for i in range(m):
    	b[i] = find(s, s[m-i:], s[m-i-1])

    return b

print(table('anpanman'))

To put minds at rest, this isn't homework. I'll add revisions when anyone posts ideas for improvements.

flag

For one thing, use xrange(n,0,-1) and xrange(m) in place of range()... it saves a bit of memory – David May 8 at 18:02
Actually the code above is Python 3. See docs.python.org/dev/py3k/… – PythonPower May 8 at 19:32
How about following the implementation from LiteratePrograms? It seems like it does less preprocessing, but I'm no Boyer-Moore expert. en.literateprograms.org/Boyer-Moore_string_search…) – Hao Lian May 8 at 21:52
Forgot about the parentheses: is.gd/xSEz – Hao Lian May 8 at 21:53
The code in that link is not worst-case O(n) and it only builds the first table (I want to build the second). – PythonPower May 9 at 9:21
show 1 more comment

1 Answer

vote up 2 vote down check

The code under "Preprocessing for the good-suffix heuristics" on this page builds the good-suffix table in O(n) time. It also explains how the code works.

link|flag
Thanks. Mission accomplished. – PythonPower May 9 at 20:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.