|
|
|
@ -174,7 +174,7 @@ typedef struct
|
|
|
|
|
VertexType vexs[NO]; //在图结构体中调用点的结构体
|
|
|
|
|
ArcCell arc[NO][NO]; //在图结构体中调用边的结构体
|
|
|
|
|
}MatGrath;
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
对该数据结构的特点进行分析。
|
|
|
|
|
|
|
|
|
@ -247,7 +247,7 @@ int ShortestPath(MatGrath &G,int v,int w)//求两点之间的最短路径
|
|
|
|
|
if(s[w]==0)
|
|
|
|
|
printf("从%d到%d不存在路径\n",v,w);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|