数据结构--顺序表(数组) #include<stdio.h>#include<stdlib.h>#define max 100typedef int DataType;typedef struct { DataType list[max]; int length;}seqlist;void Initlist(seqlist *L){ L->length=0;}int... 数据结构与算法 2024-01-09 170 点赞 2 评论 257 浏览