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

poj 2752 Seek the Name, Seek the Fame KMP

时间:2014-08-04 21:32:38      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:os   io   for   ar   算法   amp   应用   c   

对于KMP算法中next函数的应用

题意是对于一个字符串的前缀和后缀比较是否相等,再把相等的可能按字符串长度进行输出

#include <iostream>
#include<stdio.h>
#include<string.h>
using namespace std;
int len;
int next[1000005];
char s[1000005];
int kmp_next()
{
    int i=0,j=-1;
    next[0]=-1;
    while(i<len)
    {
        if(j==-1||s[i]==s[j])
        {
            i++;j++;
            next[i]=j;


        }
        else
            j=next[j];
    }
     //for(int i=0;i<len;i++)
        //printf("%d\n",next[i]);
   // int x=i-next[i];//碰到不匹配的向前滚动的位移
   // if(len%x==0)
     //   return x;
   // else
      //  return len;
}
void output(int qq)
{
     if(next[qq]!=0)
       {
            output(next[qq]);
             printf("%d ",next[qq]);//递归的往前找相匹配的
       }
}
int main()
{


    while(scanf("%s",s)!=EOF)
    {
        if(s[0]==‘.‘)
            break;
        len=strlen(s);
        int ans=kmp_next();
       // for(int i=len;i>0;i--)
       // {
           // if(next[i]!=0||(next[i]==0&&next[i+1]!=0))
              //  printf("%d ",next[i]+1);
       // }
        output(len);
        printf("%d\n",len);
        //ans=len/ans;
       // printf("%d\n",ans);
    }
    return 0;
}


poj 2752 Seek the Name, Seek the Fame KMP,布布扣,bubuko.com

poj 2752 Seek the Name, Seek the Fame KMP

标签:os   io   for   ar   算法   amp   应用   c   

原文地址:http://blog.csdn.net/asuxiexie/article/details/38374777

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