摘要: #include <stdio.h> #define MaxSize 100 //定义 typedef struct{ char ch[MaxSize]; int length; }SString; //朴素模式匹配算法 ,主串S,辅串T ,最坏时间复杂度:O(mn) int Index(SStri 阅读全文
posted @ 2023-09-07 20:27 CherriesOvO 阅读(15) 评论(0) 推荐(0) 编辑