摘要: 构造一个空的顺序表 #define MAX_SIZE 100 typedef struct { int *address;//基地址 int length;//顺序表长度 int size;//顺序表总空间 }LIST; //创建一个空的顺序表 bool initList(LIST& list) { 阅读全文
posted @ 2021-06-24 20:43 乐吴 阅读(80) 评论(0) 推荐(0)