Seek the Name, Seek the Fame POJ - 2752

时间:2023-01-26 07:40:19

Seek the Name, Seek the Fame POJ - 2752

http://972169909-qq-com.iteye.com/blog/1071548

(kmp的next的简单应用)

简单来讲,这道题就是要找字符串的所有相同前缀后缀。

第一次找出最大的相同前缀后缀,然后找次大的。次大的相同前缀后缀的前缀一定是在最大相同前缀后缀的前缀的前面取一段,次大的相同前缀后缀的后缀一定是在最大相同前缀后缀的后缀的后面取一段。由于是相同前缀后缀,将后缀的后面取的那一段移到前缀后面去取,问题就变为也就是从最大相同前缀后缀的前缀中取出其最大相同前缀后缀。这个过程是递归的,直到最大相同前缀后缀的长度为0。

当然,kmp的next中不会留下整个字符串长度m的痕迹,因此m要单独输出。

 #include<cstdio>
#include<cstring>
char s[];
int f[];
int m;
int getf()
{
int i=,j=f[]=-;
while(i<m)
{
while(j>=&&s[i]!=s[j])
{
j=f[j];
}
i++;j++;
f[i]=j;
}
}
void print(int i)
{
if(f[i]>) print(f[i]),printf("%d ",f[i]);
}
int main()
{
while(scanf("%s",s)==)
{
m=strlen(s);
getf();
print(m);
printf("%d\n",m);
}
return ;
}