摘要: #include<iostream>#include <iomanip>#include <stack>#include <deque>#include <fstream>using namespace std;struct primnode{public:char begvex;char endvex;int lowcost;};struct adknode{ int dist;//最近距离char way[50];//顶点数组int nodenum;//经过的顶点数};class Mgraph//邻接矩阵储存结构{public:M 阅读全文
posted @ 2010-12-29 22:36 AningEmpire 阅读(2088) 评论(0) 推荐(2) 编辑