杨腾泽
yangtengze 1 year ago
parent b6baf86b92
commit 9c714baf3f

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

Loading…
Cancel
Save