並查集和最小生成樹

並查集 核心代碼 void make_set(){ for(int x = 1; x <= n; x++) parent[x]=x; } int find_set(int x){ if(x!=parent[x]) parent[x] = find_set(parent[x]); return parent[x]; } void unio
相關文章
相關標籤/搜索