最小生成樹—Kruskal模板

    #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> using namespace std; typedef struct edge { int start; int end; int weight; }Edge; #define MAXN 500 //點的數量 #def
相關文章
相關標籤/搜索