用C语言和数据结构中的无向图存储结构编一个校园导游图完全的程序代码.docxVIP

  • 9
  • 0
  • 约1.1万字
  • 约 12页
  • 2019-09-10 发布于江西
  • 举报

用C语言和数据结构中的无向图存储结构编一个校园导游图完全的程序代码.docx

#define Infinity 1000 #define MaxVertexNum 35 #define MAX 40 #includestdio.h #includestdlib.h #includeconio.h #includestring.h #includeiostream.h typedef struct arcell //边的权值信息 { int adj; //权值 }arcell,adjmatrix[MaxVertexNum][MaxVertexNum]; //图的邻接矩阵类型 typedef struct vexsinfo //顶点信息 { int position; //景点的编号 char name[32]; //景点的名称 char introduction[256]; //景点的介绍 }vexsinfo; typedef struct mgraph

文档评论(0)

1亿VIP精品文档

相关文档