最短路径算法实现
最短路径算法 #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; };
用户评论