最小代價生成樹的克魯斯卡爾算法

#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
相關文章
相關標籤/搜索