摘要: 所谓顺序表即以顺序存储的方式实现线性表 以下为静态分配实现 #include <stdio.h> #define MaxSize 10 //最大长度 typedef struct{ int data[MaxSize]; int length; //当前长度 }SqList; //顺序表静态定义 vo 阅读全文
posted @ 2020-06-13 13:23 swefii 阅读(425) 评论(0) 推荐(0) 编辑