摘要: #include<bits/stdc++.h> using namespace std; #define MaxSize 10 typedef struct { int data[MaxSize]; int lenght; }SqList; bool ListInsert(SqList &L , i 阅读全文
posted @ 2021-04-05 22:23 .李宁宁 阅读(411) 评论(0) 推荐(0) 编辑
摘要: 主要实现顺序表内存满之后再次申请内存的操作 #include<bits/stdc++.h> using namespace std; #define InitSize 10 typedef struct { int *data; int lenght; int MaxSize ; }SeqList; 阅读全文
posted @ 2021-04-05 22:21 .李宁宁 阅读(286) 评论(0) 推荐(1) 编辑