给定一个模式串 S,以及一个模板串 P,所有字符串中只包含大小写英文字母以及阿拉伯数字。
模板串 P 在模式串 S 中多次作为子串出现。
求出模板串 P 在模式串 S 中所有出现的位置的起始下标。
第一行输入整数 N,表示字符串 P 的长度。
第二行输入字符串 P。
第三行输入整数 M,表示字符串 S 的长度。
第四行输入字符串 S。
共一行,输出所有出现位置的起始下标(下标从 0 开始计数),整数之间用空格隔开。
1≤N≤105
1≤M≤106
3 aba 5 ababa
0 2
#include <iostream> using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char** argv) { char p[1000010], s[1000010]; int n, m; int ne[100001]; cin>>n>>p+1>>m>>s+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=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-n<<" "; j = ne[j]; } } return 0; }