摘要: ``` #include #include #define INIT_SIZE 100 #define INCRE_SIZE 10 typedef int ElemType; typedef struct SqList //1.顺序表的动态存储 { ElemType *pList; int leng 阅读全文
posted @ 2023-08-25 17:14 TCcjx 阅读(8) 评论(0) 推荐(0) 编辑