导游程序(C语言)
typedef struct ArCell { int adj; //路径长度 }ArCell,AdjMatrix[MAX_VERTEX_NUM][MAX_VERTEX_NUM]; typedef struct//图中顶点表示主要景点,存放景点的编号、名称、简介等信息, { char name[30];//景点名 int num;//编号 char introduction[100];//简介 }infotype; typedef struct { infotype vexs[MAX_VERTEX_NUM]; AdjMatrix arcs;//路径 int vexnum,arcnum;//结点数,弧度数 }MGraph; MGraph b;
用户评论