码迷,mamicode.com
首页 > 其他好文 > 详细

【洛谷】3375 KMP字符串匹配

时间:2017-03-25 23:36:57      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:string   algo   close   .com   har   post   div   open   htm   

【算法】KMP

【题解】【算法】字符串

技术分享
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
const int maxn=1000010,maxm=1010;
char A[maxn],B[maxm];
int p[maxm],n,m;
int main()
{
    scanf("%s%s",A+1,B+1);
    n=strlen(A+1);m=strlen(B+1);
    p[0]=0;
    int j=0;
    for(int i=2;i<=m;i++)
     {
         while(j>0&&B[j+1]!=B[i])j=p[j];
         if(B[j+1]==B[i])j++;
         p[i]=j;
     }
    j=0;
    for(int i=1;i<=n;i++)
     {
         while(j>0&&B[j+1]!=A[i])j=p[j];
         if(B[j+1]==A[i])j++;
         if(j==m)
          {
              printf("%d\n",i-j+1);
              j=p[j];
         }
     }
    for(int i=1;i<m;i++)printf("%d ",p[i]);
    printf("%d",p[m]);
    return 0;
}
View Code

 

【洛谷】3375 KMP字符串匹配

标签:string   algo   close   .com   har   post   div   open   htm   

原文地址:http://www.cnblogs.com/onioncyc/p/6618911.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!