1. 首页
  2. 编程语言
  3. C++ 
  4. 邻接表与邻接矩阵互换代码

邻接表与邻接矩阵互换代码

上传者: 2019-03-01 05:48:22上传 CPP文件 3.62KB 热度 32次
#include #include typedef int InfoType; #define MAXV 100 /*最大顶点个数*/ /*以下定义邻接矩阵类型*/ typedef struct { int no; /*顶点编号*/ InfoType info; /*顶点其他信息*/ } VertexType; /*顶点类型*/ typedef struct /*图的定义*/ { int edges[MAXV][MAXV]; /*邻接矩阵*/ int vexnum,arcnum;
用户评论