平常小土豆

文章
6
资源
0
加入时间
3年0月8天

顺序表实现两个集合的合并

#include #include #define  LIST_INIT_SIZE 10 //线性表存储空间的初始分配量#define  LIST_INCREMENT 10 //线性表存储空间的分配增量#define  OK 1#define  OVERFLOW -1#define  ERROR 0typedef  int Status; //Status是函数的类型,