摘要: #include <iostream> #include <stdlib.h> #define MAX_SIZE 100 using namespace std; typedef struct _SqList { int* elems; //顺序表的基地址 int size; //顺序表的大小 in 阅读全文
posted @ 2023-01-16 22:42 wshidaboss 阅读(677) 评论(0) 推荐(0) 编辑