理解个KMP怎么这么难= =#

理解过程中的

参考网站:

1. http://www.ruanyifeng.com/blog/2013/05/Knuth%E2%80%93Morris%E2%80%93Pratt_algorithm.html

2. http://blog.csdn.net/v_july_v/article/details/7041827

3. http://www.ituring.com.cn/article/59881

POJ 3461:

自己写的KMP算法(用于解POJ 3461):

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
const int maxnum=1e5;

int next[maxnum];
int nextval[maxnum];
char s[(int)(1e6+100)];
char p[maxnum];

void get_next()
{
    next[0]=-1;
    int i=0; //主串下标
    int j=-1;//匹配串下标
    int length=strlen(p);
    while(i<length)
    {
        if(j==-1||p[i]==p[j])
        {
            ++i;//将主串下标后移一位
            ++j;//将匹配串下标后移一位
            next[i]=j;
        }
        else j=next[j];
    }
}
void kmp(int &ans)
{
    int i=0;//主串的移动下标
    int j=0;//匹配串的移动下标
    int len_s=strlen(s);//主串的长度
    int len_p=strlen(p);//匹配串的长度
    while(i<len_s&&j<len_p)
    {
        if(j==-1||s[i]==p[j])
        {
            ++i;
            ++j;
            if(j==len_p)
            {
                j=next[j];
                ++ans;
            }
        }
        else j=next[j];
    }
}
int main()
{
    int T;
    cin>>T;
    while(T--)
    {
        int ans=0;
        scanf("%s",p);
        scanf("%s",s);
        get_next();
        kmp(ans);
        cout<<ans;
        printf("\n");
    }
    return 0;
}

KMP next数组算法优化:

http://www.acmerblog.com/kmp-algorithm-2-4411.html

    原文作者:KMP算法
    原文地址: https://blog.csdn.net/love_fdu_llp/article/details/52666787
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞