摘要: 第1关:顺序表基本操作及应用 1 #include <stdlib.h> 2 #include <stdio.h> 3 4 5 typedef int DataType; 6 struct SeqList{ 7 DataType *elem; 8 int Max; //表示线性表最大长度 9 int 阅读全文
posted @ 2020-12-01 18:10 ggexs 阅读(314) 评论(0) 推荐(0)