顺序表结构体的定义为typedef struct{ int *elem; //线性表的基址 int length; int listsize; int increment; }其中 *elem作为一个指针为什么数据类型可以定义为int 查看完整描述