kmp算法理解(纯收集)

对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>的一个小实现

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值