kmp next数组求法

2021-06-05 00:02

阅读:337

标签:color   code   main   names   end   int   using   ios   ==   

以字符串aabaaf为例

next数组可能有几种表达方式

如 0 1 0 1 2 0

 -1 0 1 0 1 2

 -1 0 -1 0 1 -1

实际上他们的本质上都是一样的

第一种当前后缀不匹配时,j跳到next[j-1];

第二种j跳到next[j];

#include
#includeusing namespace std;
void Getnext(string s,int * next)
{
    int j=0;
    next[0]=0;
    for(int i=1;i)
    {
        while(j>0&&s[i]!=s[j])
        {
            j=next[j-1];
        }
        if(s[i]==s[j]) j++;
        next[i]=j;
    }
}
void display(int *next)
{
    for(int i=0;i6;i++)
    {
        coutendl;
    }
}
int main()
{
    string a="aabaaf";
    int next[6];
    Getnext(a,next);
    display(next);
    return 0;
} 

 

kmp next数组求法

标签:color   code   main   names   end   int   using   ios   ==   

原文地址:https://www.cnblogs.com/yxhg/p/14640769.html


评论


亲,登录后才可以留言!