数据结构 P22-24 算法实现 线性表的插入与删除
/*线性表的插入*/#include using namespace std;#define LIST_INIT_SIZE 100 //线性表的初始分配量#define LISTINCREMENT 10 //线性表分配空间的增量 struct SqList //定义线性表结构体{i