abcde a3 aaaaaa aa #
0 3
查找模式字串在主串中出现的次数(重复出现的模式串不能重叠)-------KMP算法
#include #include char s[1005],t[1005]; int next[1005]; int k; void get_next(int len) { int i,j; i=0; j=-1; next[0]=-1; while(i { if(j==-1||t[i]==t[j]) { if(t[++i]==t[++j]) next[i]=next[j]; else next[i]=j; } else j=next[j]; } } void count(int i,int len1,int len2) { int j=0; if(i>=len1) return ; while(i { if(j==-1||s[i]==t[j]) //继续比较后续字符 { ++i; ++j; } else //模式串向右移动 j=next[j]; } if(j==len2) //匹配成功 ++k; count(i,len1,len2); //继续在后边查找 } int main() { int len1,len2; while(scanf("%s",s)&&s[0]!='#') { k=0; scanf("%s",t); len1=strlen(s); len2=strlen(t); get_next(len2); count(0,len1,len2); printf("%d\n",k); } return 0; }
#include
char *strstr( const char *str1, const char *str2 );
功能:函数返回一个指针,它指向字符串str2 首次出现于字符串str1中的位置,如果没有找到,返回NULL。
#include #include int main(void) { int len, c; char *p; char a[1001], b[1001]; while (scanf("%s", a), a[0] != '#') { scanf("%s", b); len = strlen(b); for (c = 0, p = a; p = strstr(p, b); c++,p += len); printf("%d\n", c); } return 0; }