摘要: 1.在了解顺序表之前,首先知道结构体,通过结构体来定义一个顺序表 1)静态顺序表代码如下: 1 typedef int DataType; 2 3 #define MAX_SIZE (100) 4 5 typedef struct SeqList { 6 DataType array[MAX_SIZ 阅读全文