文件名称:最短路径算法实现
文件大小: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