顺序表结构体的动态数组实现 顺序表结构体的动态数组c++指针实现typedefstruct{/*动态顺序表*/intlast,max;/*尾元下标和预留表长*/DataType*data;/*动态数组的基址*/}SeqList;