KMP练习——KMP模式匹配 一(串)

Description

求子串的next值,用next数组存放,全部输出

Input

输入一个字符串

Output

输出所有next值

Sample Input

abaabcac

Sample Output

0 1 1 2 2 3 1 2

 

代码

#include
#include
#include
#include
using namespace std;
void getNext(char *p,int *next)
{
    int j=0,k=-1;
    next[0]=-1;
    while(j


KMP算法中如何求NEXT函数,具体原理大家看看就好。。。。

 

 

你可能感兴趣的:(KMP)