最小代价生成树的克鲁斯卡尔算法

#include<iostream> #include<vector> #include<algorithm> #include<list> using namespace std; struct edge { int  node; int weight; edge(int node ,int weight):node(node),weight(weight) { } } ; struct Gra
相关文章
相关标签/搜索