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

算法模板之KMP

时间:2018-06-08 14:20:30      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:span   oid   main   turn   \n   cstring   c++   aac   cpp   

KMP

#include<cstdio>
#include<cstring>
void get_next(char *p,int *next){
    int pLen = strlen(p);
    next[0] = -1;
    int k = -1,j = 0;
    while(j < pLen - 1){
        if(k == -1 || p[j] == p[k]){
            j ++;
            k ++;
            next[j] = k;
        }
        else {
            k = next[k];
        }
    }
}
int kmp(char *s, char * p, int *next){
    int sLen = strlen(s);
    int pLen = strlen(p);
    int i = 0, j = 0;
    while(i < sLen && j < pLen){
        if(j == -1 ||s[i] == p[j]){
            i ++;
            j ++;
        }
        else {
            j = next[j];
        }
    }
    if(j == pLen){
        return i - j;
    }
    else return -1;
}
int main()
{
    char s1[123] = "ggbbaacda";
    char s2[123] = "aadd";
    int next[123] ;
    get_next(s2,next);
    printf("%d\n",kmp(s1,s2,next));
    return 0;
}

算法模板之KMP

标签:span   oid   main   turn   \n   cstring   c++   aac   cpp   

原文地址:https://www.cnblogs.com/goxy/p/9154741.html

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