abcde a3 aaaaaa aa #
0 3源代码:#include <stdio.h> #include <string.h> #include <stdlib.h> #define size 1010 char s[size], t[size]; int next[size]; void GetNext()//对模式串t求next[]值 { int j,k; j=0;k=-1;next[0]=-1; while(j<strlen(t)-1) { if(k==-1 || t[j]==t[k])//k为-1或者比较的字符相等时 { j++;k++; next[j]=k; } else k=next[k]; } } int KMPIndex() { int i=0,j=0,count=0; GetNext(); while(i<strlen(s)) { if(strlen(t)==j) count++; if(j==-1 || s[i]==t[j]) { i++; //i,j各增1 j++; } else j=next[j]; //i不变,j后退 } if(strlen(s)==i && strlen(t)==j) count++; return count; } int main() { int i, j; while(scanf("%s%s",s,t)!=EOF && strcmp(s,"#")!=0) { printf("%d\n",KMPIndex()); } system("pause"); return 0; }
原文地址:http://blog.csdn.net/zchlww/article/details/41726185