typedef int DataType;
struct seqList {
int MAXNUM; // 最大元素个数
int curNum; // 当前元素个数
DataType *element; // 元素数组
};
typedef struct seqList *PseqList;
typedef int DataType;
struct seqList {
int MAXNUM; // 最大元素个数
int curNum; // 当前元素个数
DataType *element; // 元素数组
};
typedef struct seqList *PseqList;