//============================================================================
//
// > File : poj2752.cpp
// > Author : flowertree
// > Time : 2015年12月15日
// > Algorithm : KMP算法的理解
//
//============================================================================
#include <iostream>
#include <string.h>
#include <stdio.h>
#include <algorithm>
using namespace std;
#define MAX 400005
char str[MAX];
int Next[MAX];
void getnext(int len)
{
int i = 0;
int j = -1;
Next[0] = -1;
while(i < len)
{
if(j == -1 || str[i] == str[j])
{
++i;
++j;
Next[i] = j;
}
else
j = Next[j];
}
}
void Judge(int len)
{
if(Next[len] != 0)
{
int temp = Next[len];
Judge(temp);
cout << Next[len] << " ";
}
}
int main()
{
while(scanf("%s", str) != EOF)
{
int len = strlen(str);
getnext(len);
Judge(len);
cout << len << endl;
}
system("pause");
return 0;
}
poj 2752 KMP的理解
最新推荐文章于 2016-05-08 23:35:53 发布