现在的位置: 首页 > 综合 > 正文

kmp算法理解(纯收集)

2014年02月28日 ⁄ 综合 ⁄ 共 2096字 ⁄ 字号 评论关闭

对kmp算法的理解可以参考Introduction to Algorithm 3rd Edition Chapter 32.4

 

如果没有这本书的同学,可以看看下面

KMP-MATCHER(T, P) 

 1 n ← length[T] 

 2 m ← length[P] 

 3 π ← COMPUTE-PREFIX-FUNCTION(P) 

 4 q ← 0                          ▹Number of characters matched. 

 5 for i ← 1 to n                 ▹Scan the text from left to right. 

 6      do while q > 0 and P[q + 1] ≠ T[i] 

 7             do q ← π[q]    ▹Next character does not match. 

 8         if P[q + 1] = T[i] 

 9            then q ← q + 1      ▹Next character matches. 

10         if q = m                    ▹Is all of P matched? 

11            then print "Pattern occurs with shift" i - m 

12                 q ← π[q]    ▹Look for the next match. 

COMPUTE-PREFIX-FUNCTION(P) 

 1 m ← length[P] 

 2 π[1] ← 0 

 3 k ← 0 

 4 for q ← 2 to m 

 5      do while k > 0 and P[k + 1] ≠ P[q] 

 6             do k ← π[k] 

 7         if P[k + 1] = P[q] 

 8            then k ← k + 1 

 9         π[q] ← k 

10 return π

 

 

很多网页上面都有对该算法的解释和说明

<1> http://blog.csdn.net/liuben/archive/2009/08/04/4409505.aspx

<2> http://www.ics.uci.edu/~eppstein/161/960227.html

<3> http://en.wikipedia.org/wiki/Knuth%E2%80%93Morris%E2%80%93Pratt_algorithm

<4> http://www.inf.fh-flensburg.de/lang/algorithmen/pattern/kmpen.htm

 

 

ps2: 下面是用c语言按照网页索引<3>的一个小实现

 

抱歉!评论已关闭.