Red_Leaves
Red_Leaves
全部文章
分类
未归档(5)
模板(1)
考试题解(1)
题解(7)
归档
标签
去牛客网
登录
/
注册
Red_Leaves的博客
探寻编程之美
全部文章
(共1篇)
KMP算法模板
#include<cstdio> #include<cstring> const int MAXN = 10000 + 10; void KMP(char *pattern, char *source, int *f){ //getfail int m =...
KMP
2021-06-02
0
444