typedef struct list { int *elem; //空间大小,相当于数组 int length; //当前元素个数 int listsize; //总的容量 }List; void main() { List l; List *l; }