逻辑结构 数组在内存中是连续存放的,适合用作顺序表。 数组可分为: 一维数组 ElemType e[n] 二维数组 ElemType e[n][n] 提示:常见的 ElemType 包括 int,char,float 基本操作 完整代码 去 gist 查看完整代码 相关文章: