思路:套用KMP模板即可。
#include<bits/stdc++.h>
using namespace std;
#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define endl '\n'
int ne[200005];
int main()
{
IOS
string a,b;
while(cin >> a){
if(a=="#") break;
cin >> b;
int n=a.size(),m=b.size(),cnt=0;
a=' '+a;//主串
b=' '+b;//模式串
//套用KMP模板
ne[1]=0;
for(int i=2,j=0;i<=m;i++){//求next数组
while(j && b[i]!=b[j+1]) j=ne[j];
if(b[i]==b[j+1]) j++;
ne[i]=j;
}
for(int i=1,j=0;i<=n;i++){
while(j && a[i]!=b[j+1]) j=ne[j];
if(a[i]==b[j+1]) j++;
if(j==m) cnt++,j=0;//计数的同时,还要初始化 j,再开始向后匹配
//若是可以重叠的话 就将 j=0 改成 j=ne[j],再继续向后匹配
//若是要求模式串在主串中第一次出现的位置 ,就直接输出 i-m+1
}
cout << cnt << endl;
}
return 0;
}