KMP算法及改进KMP算法实现

/* *描述:KMP算法以及改进后的KMP算法实现 */ #include <stdio.h> #include <string.h> #define MaxSize 100 typedef struct { char data[MaxSize]; //定义可容纳MaxSize个字符的空间 int length; //标记当前实际串长 }
相关文章
相关标签/搜索