摘要: KMP完整代码 #include <stdio.h> #include <stdlib.h> #include <string.h> int* build_prefix_table(const char* str_pat, int len_pat) { int* prefix_table = (in 阅读全文
posted @ 2021-02-09 20:20 拉普拉斯の蕉 阅读(314) 评论(0) 推荐(0)