- 博客(15)
- 收藏
- 关注
原创 2020-11-14
实验6 已知道目标串”ccaaabaaab”,模式串“aaab”,求以下操作: (1)用BF算法判断模式串是否在目标串中出现,如果有返回匹配的位置,否则返回-1。 #include<stdio.h> #include<stdlib.h> #include<string.h> #define MAXLEN 100 typedef struct { char str[MAXLEN]; int length; }LS; ...
2020-11-16 17:32:25
226
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人