数据结构 c语言版 ??顺序表的查找、插入与删除

日期:2017-09-14 17:14:42 人气:1

数据结构 c语言版 ??顺序表的查找、插入与删除

#include #include #define N 10 //顺序表的最大容量 int length=0; //顺序表的当前元素个数 #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #define OVERFLOW -2 #define LIST_INIT_SIZE 100//线性表存储的空间初始化分配量
    A+
热门评论