最小生成树Kruskal算法实现C++实现

// Kruskal算法实现.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include<iostream> #define MAX 100 typedef int WeiType; using namespace std; // struct Edge { int no; /
相关文章
相关标签/搜索