Kruskal算法求最小生成树

Posted Rgylin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kruskal算法求最小生成树相关的知识,希望对你有一定的参考价值。

Kruskal算法求最小生成树


· 在这里插入代码片



//struct 


1. struct edges

2. 输入边

3. 初始化并查集

4. 给边排序
5. 然后从小到大归并边 要求不连通 使用并查集来判断是否联通

6. 比较 cnt 与 n的大小
#include <iostream>
#include <algorithm>

using namespace std;
const int N=200005;
int n,m; 
int p[N]; //并查集数组

struct edges

    int a,b,w;
    bool operator < (const edges &W )const
        return w<W.w;
    
edges[N];
//并查集

int find(int x)
    if(p[x]!=x) p[x] = find(p[x]);
    return p[x];

int main()
    
    int cnt=0;
    int res=0;
    cin>>n>>m;
    int a,b,w; //边
    for(int i=1;i<=n ;i++)///初始化并查集
        p[i] = i;
    for(int i=0;i<m;i++)
        int a,b,w;
        cin>>a>>b>>w;
        edges[i] =a,b,w;
        
    
    sort(edges,edges+m);
    for(int i=0;i<m;i++)
    
        
        cin>>a>>b>>w;
        int a= edges[i].a;
        int b= edges[i].b;
        int w= edges[i].w;
        if(find(a)!= find(b))
            cnt +=1; // 连接的边数;
            res +=w;
            p[find(a)] = find(b); //连接到并查集中
        
    
    if(cnt< n-1 )cout<<"impossible"<<endl;
    else cout<<res<<endl;
    
    
    


以上是关于Kruskal算法求最小生成树的主要内容,如果未能解决你的问题,请参考以下文章

Kruskal算法求最小生成树

求最小生成树——Kruskal算法

Kruskal算法求最小生成树

Kruskal算法求最小生成树

Kruskal算法求最小生成树

数据结构与算法—并查集Kruskal算法求最小生成树