最短路径算法实现

时间:2016-12-10 15:39:19
【文件属性】:

文件名称:最短路径算法实现

文件大小:31KB

文件格式:DOC

更新时间:2016-12-10 15:39:19

C++;VC++6.0

最短路径算法 #ifndef _topo_h__ #define _topo_h__ ////////////////////////////////////////////////////////////////////////// #define MAXWEIGHT 1000000000 #define DIFFVAL(v1, v2) (((v1) > (v2))? (v1)-(v2) : (v2)-(v1)) #pragma warning(disable:4786) #include using namespace std; struct topo_node { union { struct { long x; long y; };


网友评论

  • 没有注释,而且格式怪怪的,像从其他地方复制来的