摘要: #include #include #define MAXSIZE 5 using namespace std; typedef struct { char *elem; //储存空间基地址 int length; //当前长度 }SqList; //初始化顺序表 int InitList(SqList *L) { L->elem=new char[MAXSIZE];... 阅读全文
posted @ 2019-03-21 13:14 学之初 阅读(362) 评论(0) 推荐(0) 编辑