我的代码
#include<iostream>
using namespace std;
const int N=1e5+5,M=1e6+5;
char p[N],s[M];//P为模板串
int ne[N];
int main()
{
int n,m;
cin>>n>>p+1>>m>>s+1;//下标从1开始
for(int i=2,j=0;i<=n;i++)
{
while(j && p[i]!=p[j+1])j=ne[j];
if(p[i]==p[j+1])j++;
ne[i]=j;
}
for(int i=0,j=0;i<=m;i++)
{
while(j && s[i]!=p[j+1])j=ne[j];
if(s[i]==p[j+1])j++;
if(j==n)
{
printf("%d ",i-n);
j=ne[j];
}
}
return 0;
}