码迷,mamicode.com
首页 > 编程语言 > 详细

字符串匹配——KMP算法

时间:2015-04-14 22:49:26      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
#include <cstdio>
#include <cstring>

const int N = 1000000 + 5;
char s[N],t[N];
int lens,lent;

int next[N];

void get_fail() {
    next[0] = -1;
    for (int i = 1,j = -1; i < lent; ++ i) {
        while (j != -1 && t[i] != t[j+1]) j = next[j];
        next[i] = t[i] == t[j+1] ? ++ j : j ;
    }
}

int work() {
    lens = strlen(s);
    lent = strlen(t);
    get_fail();
    int ret = 0;
    for (int i = 0,j = -1; i < lens; ++ i) {
        while (j != -1 && s[i] != t[j+1]) j = next[j];
        if (s[i] == t[j+1]) {
            ++ j;
            if (j == lent-1) {
                j = -1;
                ret ++;
            }
        }
    }
    return ret;
}

int main() {
   // freopen ("a.txt" , "r" , stdin ) ;
    while (scanf("%s",s) != EOF) {
        scanf("%s",t);
        printf("%d\n",work());
    }
    return 0;
}
View Code

 

字符串匹配——KMP算法

标签:

原文地址:http://www.cnblogs.com/zero-begin/p/4426216.html

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