KMP总结

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了KMP总结相关的知识,希望对你有一定的参考价值。

模板


 

用法

1、求一个串是否是另一个的子串

2、是子串,并有几个子串


 

代码

技术分享
int nex[maxn];
string s, b;
void getNext()
{
    int j, k;
    int tlen=b.length();
    j = 0; k = -1; nex[0] = -1;
    while(j < tlen)
        if(k == -1 || b[j] == b[k])
            nex[++j] = ++k;
        else
            k = nex[k];

}

bool kmp()
{
    int ans = 0;
    int i, j = 0;
    int slen=s.length();
    int tlen=b.length();
    if(slen == 1 && tlen == 1)
    {
        if(s[0] == b[0])
            return 1;
        else
            return 0;
    }
    for(i = 0; i < slen&&ans==0; i++) // 求次数只需要将ans=0条件删除即可
    {
        while(j > 0 && s[i] != b[j])
            j = nex[j];
        if(s[i] == b[j])
            j++;
        if(j == tlen)
        {
            ans++;
            j = nex[j];
        }
    }
    if(ans)
    return true;
    return false;
}
View Code

 

以上是关于KMP总结的主要内容,如果未能解决你的问题,请参考以下文章

kmp总结

KMP算法总结

python常用代码片段总结

KMP 算法

BootStrap有用代码片段(持续总结)

数据结构--KMP算法总结