KMP練習——KMP模式匹配 一(串)
阿新 • • 發佈:2017-07-27
字符 script == str end 練習 ext ring div
Description
求子串的next值,用next數組存放,所有輸出
Input
輸入一個字符串
Output
輸出全部next值
Sample Input
abaabcac
Sample Output
0 1 1 2 2 3 1 2
代碼
#include<iostream> #include<cstdio> #include<cstring> #include<cmath> using namespace std; void getNext(char *p,int *next) { int j=0,k=-1; next[0]=-1; while(j<strlen(p)-1) { if(k==-1||p[j]==p[k]) { j++; k++; next[j]=k; } else k=next[k]; } } int main() { char a[100]; int i,next[100]; while(gets(a)) { getNext(a,next); cout<<next[0]+1; for(i=1;a[i]!=0;++i) cout<<" "<<next[i]+1; cout<<endl; } return 0; }
KMP算法中怎樣求NEXT函數,詳細原理大家看看就好。。。
。
KMP練習——KMP模式匹配 一(串)