摘要: #include<iostream> using namespace std; #define MAXLISTSIZE 100 //顺序表的最大容量 struct Sqlist { int *elem; int length; }; bool InitList(Sqlist &L){ L.elem 阅读全文
posted @ 2021-07-21 14:16 宁宁鸡a 阅读(161) 评论(0) 推荐(0) 编辑