摘要: 顺序表的初始化:静态分配 /*指定 int 的别名 */ typedef int ElemType; /*数组的最大容量*/ #define MaxSize 50 typedef struct Sqlist{ ElemType data[MaxSize]; int length; } Sqlist; 阅读全文
posted @ 2024-06-29 20:01 成强 阅读(4) 评论(0) 推荐(0) 编辑