顺序表 数据结构 | 2024-7-27 18:14 | 2024-8-01 17:46 | 76 687 字 | 16 分钟 顺序表 1. 定义 1.1 静态 #define MAX_SIZE 100 typedef int ElemType typedef struct SqList{ ElemType list[MAX_SIZE]; int length; }SqList; 1.2 动态 typedef int ElemType; typedef struct SqL… 数据结构