Kruskal算法优先级队列版 算法基础篇(五)
摘要:
View Code 1 // Kruskal算法.cpp : 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include <queue> 6 #include <string> 7 #include <iostream> 8 using namespace std; 9 #define Infinity 1000 10 #define Max 20 11 typedef int ElemType; 12 typedef unsigned int EdgeType; 13 typedef i 阅读全文
posted @ 2012-06-14 19:39 北冥茶花开 阅读(173) 评论(0) 推荐(0) 编辑