会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
c_y_yuan
我决定要好好爱这一行!
博客园
首页
新随笔
联系
订阅
管理
2020年4月3日
c++实现kmp算法
摘要: ```c++ #include #include #include using namespace std; void buildMatch(string pattern, int *& match){ int m = pattern.size(); match = (int*)malloc(m * sizeof(int)); match[0] = -1; int i; for(int j = 1
阅读全文
posted @ 2020-04-03 12:50 c_y_yuan
阅读(249)
评论(0)
推荐(0)
编辑
公告