摘要: //KMP串的模式匹配算法 #include <stdio.h> #include <stdlib.h> #include <string.h> int* get_next(char t[], int length) { int i = 0, j = -1; int* next = (int *)m 阅读全文
posted @ 2019-02-12 00:17 Ghost4C 阅读(231) 评论(0) 推荐(0) 编辑