最短路SPFA
摘要:
#include <iostream>#include <queue>using namespace std ;const int M = 1000 + 10 ;const int INF = 0x3ffffff;int dis[M]; //dis[i],点i到源点的最短路径int map[M][M]; int used[M]; //used[i],标记点i是否在队列中int SPFA(int start , int end ,int n) //起点,终点,总点数编号为[1,n]{ dis[start] = 0; //初始化d... 阅读全文
posted @ 2012-09-03 19:06 [S*I]SImMon_WCG______* 阅读(184) 评论(0) 推荐(0) 编辑