摘要:
#include<bits/stdc++.h> using namespace std; #define MaxSize 10 typedef struct { int data[MaxSize]; int lenght; }SqList; bool ListInsert(SqList &L , i 阅读全文
摘要:
主要实现顺序表内存满之后再次申请内存的操作 #include<bits/stdc++.h> using namespace std; #define InitSize 10 typedef struct { int *data; int lenght; int MaxSize ; }SeqList; 阅读全文