摘要: #字符串匹配算法 #include <stdio.h> #include <string.h> #define TEST(func, s, t) printf("%s: %s->%s = %d\n", #func, s, t, func(s, t)) int next[100]; //暴力匹配算法 阅读全文
posted @ 2021-10-12 23:52 代码附体 阅读(55) 评论(0) 推荐(0) 编辑