图 数据结构 | 2024-8-24 19:39 | 2024-11-10 16:57 | 87 603 字 | 19 分钟 图 1. 邻接矩阵存储 #define MAX_VERTEX_NUM 10 // 图中允许的最大顶点数 typedef int VertexType; // 顶点的数据类型 typedef int ArcType; // 弧(边)的数据类型 typedef struct MGraph { VertexType vex[MAX_VERTEX_NUM]… 数据结构