#include <stdio.h>
#define size 8
struct Table{
int size; //顺序表的容量大小
int length;//顺序表的有效长度,及数组中的元素个数
int *head; //动态数组
}table1
#include <stdio.h>
#define size 8
struct Table{
int size; //顺序表的容量大小
int length;//顺序表的有效长度,及数组中的元素个数
int *head; //动态数组
}table1