日期: 2024 年 8 月 24 日

1 篇文章

图 1. 邻接矩阵存储 #define MAX_VERTEX_NUM 10 // 图中允许的最大顶点数 typedef int VertexType; // 顶点的数据类型 typedef int ArcType; // 弧(边)的数据类型 typedef struct MGraph { VertexType vex[MAX_VERTEX_NUM]…