首页 > 其他 > 详细

POJ 2752 Seek the Name, Seek the Fame

时间:2015-03-28 13:01:47      阅读:164      评论:0      收藏:0      [点我收藏+]

KMP第二题,如果对KMP理解了的话,这道题应该想一下就能想出来

#include<stdio.h>
#include<algorithm>
using namespace std;
char s[400005];
int next[400005];
int a[400005];
//next数组范围为1-n,next[0]是不使用的
void get_next(int n){
    if(n==0) return;
    int i,j;
    j=next[0]=-1;
    i=0;
    while(i<n){
        while(j!=-1 && s[j]!=s[i]) j=next[j];
        next[++i]=++j;
    }
    int len=0;
    for(int i=next[n];i!=0;i=next[i]) a[len++]=i;
    for(int i=len-1;i>=0;i--) {
        printf("%d ",a[i]);
    }
    //if(next[n]!=0) printf("%d ",next[n]);
}
int main(){
    #ifndef ONLINE_JUDGE
    freopen("in.txt","r",stdin);
    #endif // ONLINE_JUDGE
    int cas=0;
    while(scanf("%s",s)!=EOF){
        int len=0;
        while(s[len]!='\0') len++;
        get_next(len);
        printf("%d\n",len);
    }
    return 0;
}


POJ 2752 Seek the Name, Seek the Fame

原文:http://blog.csdn.net/lj94093/article/details/44700347

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!