数据结构
shanxiansen310
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
串的定长顺序存储
借鉴了一下博客园的一篇文章,然后自己想放在自己的blog中 #include <stdio.h> #include <stdlib.h> #include <string.h> #define OVERFLOW -2 #define OK 1 #define ERROR 0 #define TRUE 1 #def...转载 2019-03-31 12:14:00 · 350 阅读 · 0 评论 -
串的模式匹配算法
关于这个算法核心在与理解next[]值的获得 #include <stdio.h> #include <stdlib.h> #include <string.h> #define OVERFLOW -2 #define OK 1 #define ERROR 0 #define TRUE 1 #define FALS...原创 2019-04-02 17:27:40 · 163 阅读 · 0 评论
分享