天津科技大学校园导游

时间:2012-12-29 04:38:32
【文件属性】:

文件名称:天津科技大学校园导游

文件大小:58KB

文件格式:DOC

更新时间:2012-12-29 04:38:32

VC

一个简单的校园导游系统 以下是部分代码 #define INFINITY 10000 /*无穷大*/ #define MAX_VERTEX_NUM 40 #define MAX 40 #include #include #include #include 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; int LocateVex(MGraph *G,char* v) { int c=-1,i; for(i=0;ivexnum;i++) if(strcmp(v,G->vexs[i].name)==0) {c=i;break;} return c; }


网友评论