文件名称:类Graph的定义如下-数据结构数据结构
文件大小:4.19MB
文件格式:PPT
更新时间:2024-05-16 03:05:13
数据数据
类Graph的定义如下: class Graph { private: int length[nmax][nmax]; int dist[nmax]; int path[nmax]; Boolean s[nmax]; public: void ShortestPath(const int, const int); int choose(const int); };