博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2012年2月15日

摘要: 题目:http://acm.hdu.edu.cn/showproblem.php?pid=2203给定两个字符串s1和s2,如果能通过s1循环移位,使s2包含在s1中,那么我们就说s2 是s1的亲和串。View Code #include <iostream>#include <cstdio>#include <cstring>using namespace std;const int MAXV = 200000+10;void kmp(char in[], int len, int path[]){ int i, j = -1; path[0] = -1; 阅读全文

posted @ 2012-02-15 20:54 紫华弦筝 阅读(147) 评论(0) 推荐(0) 编辑