摘要: Dijkstra单源最短路算法#include#include#include#includeusing namespace std;const int maxn = 205;int cost[maxn][maxn];int n, m, u, v, c, su, eu;int mincost[max... 阅读全文
posted @ 2015-05-11 17:54 Fighting_Heart 阅读(205) 评论(1) 推荐(0) 编辑