图的邻接表存储表示示例讲解 时间:2024-01-15 16:21:27 【文件属性】: 文件名称:图的邻接表存储表示示例讲解 文件大小:61KB 文件格式:PDF 更新时间:2024-01-15 16:21:27 存储 示例 邻接表 代码如下://———图的邻接表存储表示——- #include#include #define MAX_VERTEXT_NUM 20 typedef int InfoType;typedef char VertextType; typedef struct ArcNode{ int adjvex; struct ArcNode *nextArc; InfoType *info;}ArcNode; typedef struct VNode{ VertextType data; ArcNode *firstArc;}VNode, 立即下载