摘要: 定义线性表结构+初始化 1 //定义线性表结构 2 typedef struct 3 { 4 int *elem;//存储空间基址 5 int length;//当前长度 6 int listsize;//当前分配的存储容量 7 }Sqlist; 8 //线性表初始化 9 int InitList_ 阅读全文
posted @ 2020-04-30 18:15 YOLO-in-the-sun 阅读(272) 评论(0) 推荐(1) 编辑