C++ 代码
#include<iostream>
using namespace std;
int n,m,ne[100005];
char p[100005],s[1000005];
int main(){
cin>>n>>p+1>>m>>s+1;
//求next数组
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;
}
//KMP比对过程
for(int i=1,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){
cout<<i-j<<' ';
j=ne[j];
}
}
return 0;
}