
KMP
hellotomhaha
这个作者很懒,什么都没留下…
展开
-
kmp算法题解
KMP算法题解 题目来源: 28. Implement strStr()原创 2017-02-28 17:48:08 · 327 阅读 · 0 评论 -
KMP模式匹配中匹配的总子串数
POJ_3461_Oulipo 题目来源: POJ_3461_Oulipo 类似题目:题目1094:String Matching 2006上海交通大学机试真题 #include<stdio.h> #include<string.h>int next[10001]; int len1,len2,total; char str[10001],buf[1000001]; void原创 2017-03-01 15:18:38 · 340 阅读 · 0 评论