线性表的顺序存储表示和基本操作的实现
教材数据结构严蔚敏版基本操作代码//线性表的顺序表示和基本操作的实现#include<stdio.h>#include<stdlib.h> #define LIST_INIT_SIZE 8 //存储空间初始分配量#define LISTINCREAMENT 10 //固定的增量typedef struct{//结构体,Sqlist的数据类型 int *elem; int length;//数组已用的长度 int listsize;//