
KMP
文章平均质量分 78
coco_astrids
"Remembering that you are going to die is the best way I know to avoid the trap of thinking you have something to lose. You are already naked. There is no reason not to follow your heart."
------Jobs
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
HDU 3746---用KMP处理字符串
Cyclic NacklaceTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 2229 Accepted Submission(s): 986Problem DescriptionCC always b原创 2016-09-04 22:33:34 · 293 阅读 · 0 评论 -
HDU 2087 剪花布条(KMP水题)
题目的题意想必大家应该很清楚了!题目思路:这个题基本上是依据KMP模板打出来的,只需要根据题意来进行修改即可。代码实现:#include#include#include#include#include#include#includeusing namespace std;char str1[1005];char str2[10原创 2016-11-16 17:27:12 · 338 阅读 · 0 评论 -
KMP模板
#include#include#include#define maxn 10000010using namespace std;int T[maxn], P[maxn], nextt[maxn];int len;int len1, len2;void make_next(){ int i = 0, j = -1; nextt[0原创 2016-11-16 15:55:45 · 238 阅读 · 0 评论