最小生成树—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
相关文章
相关标签/搜索