码迷,mamicode.com
首页 > 其他好文 > 详细

KMP模板!

时间:2014-10-10 23:39:04      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   sp   div   art   

bubuko.com,布布扣
 1 int BFMatch(char *s,char *p)
 2 {
 3     int i,j;
 4     i=0;
 5     while(i<strlen(s))
 6     {
 7         j=0;
 8         while(s[i]==p[j]&&j<strlen(p))
 9         {
10             i++;
11             j++;
12         }
13         if(j==strlen(p))
14             return i-strlen(p);
15         i=i-j+1;                //指针i回溯
16     }
17     return -1;    
18 }
View Code

 

KMP模板!

标签:style   blog   http   color   os   ar   sp   div   art   

原文地址:http://www.cnblogs.com/M-D-LUFFI/p/4017900.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!