数据结构
牧码人XS
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C语言实现顺序表的初始化,插入,删除,查找
#include #include #define LIST_INIT_SISE 100 // 线性表存储空间的初始分配量 #define LIST_INCREASE_SISE 20 // 线性表存储空间的分配增量 #define OK 0 #define ERROR -1 #define OVERFLOW -2 typedef int elementTy原创 2016-12-03 23:24:07 · 17412 阅读 · 0 评论 -
C语言实现链表的创建,初始化,插入,删除,查找
#include #include #define OK 0 #define ERROR -1 #define MALLOC_ERROR -2 typedef int ElementType; typedef struct node { ElementType data; // 结点的数据 struct node *next; // 结点原创 2016-12-04 21:15:36 · 9527 阅读 · 1 评论
分享