首页 > 其他 > 详细

poj 2752 Seek the Name, Seek the Fame(KMP)

时间:2014-03-19 23:39:07      阅读:520      评论:0      收藏:0      [点我收藏+]

题目链接:poj 2752 Seek the Name, Seek the Fame


题目大意:给出一个字符串,要求找出所有的子串满足是该字符串的前缀的同时也是后缀,输出下表即可。


解题思路:首先getJump后,获得jump[n]即为最大的匹配的前缀后缀串,这样的话不断p = jump[p]直到p = 0都是满足的前缀后缀串。


#include <stdio.h>
#include <string.h>

const int N = 1e5+5;

int n, ans[N*4], jump[N*4];
char s[N*4];

void getJump () {
	n = strlen (s+1);
	int p = 0;
	for (int i = 2; i <= n; i++) {
		while (p > 0 && s[p+1] != s[i])
			p = jump[p];
		if (s[p+1] == s[i])
			p++;
		jump[i] = p;
	}
}

int main () {
	while (scanf("%s", s+1) == 1) {
		getJump ();
		int p = n, c = 0;
		while (p) {
			ans[c++] = p;
			p = jump[p];
		}
		printf("%d", ans[c-1]);
		for (int i = c-2; i >= 0; i--)
			printf(" %d", ans[i]);
		printf("\n");
	}
	return 0;
}


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

poj 2752 Seek the Name, Seek the Fame(KMP)

原文:http://blog.csdn.net/keshuai19940722/article/details/21559543

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