并查集检测成环

并查集检测成环

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-yQUJ7dkg-1612703584095)(C:\Users\左泽平\Desktop\无标题.png)]

#include<bits/stdc++.h>
using namespace std;
# define vertices 6
int parent[vertices];
void init(int a[])
{
    for(int i = 0 ; i <vertices ; i ++)
    {
        parent[i] = -1;
    }
}
int find_root(int x ,int father[])
{
    int x_root = x;
    while( parent[x_root] != -1)
    {
        x_root = parent[x_root];
    }
    return x_root;
}
int union_vertices(int x , int y, int parent[])
{
    int x_root = find_root(x,parent);
    int y_root = find_root(y,parent);
    if (x_root == y_root){
        return 0;
    }
    else{
        parent[x_root] = y_root;
        return 1;
    }
}
int main()
{
    init(parent);
    int edge[6][2]={ {0,1} ,{2,4},{1,2},{1,3},{2,5},{3,4}};
    for(int i = 0 ; i < 6 ; i ++){
        int x = edge[i][0];
        int y = edge[i][1];
        if( union_vertices( x , y , parent ) == 0) {
            cout<<" circle dectect"<<endl;
            exit(0);
        }
    }
    cout << " NOT dectect"<<endl;
    return 0;
}

压缩路径

根据树的高度(rank)来合成树

改进后的代码

#include<bits/stdc++.h>
using namespace std;
# define vertices 6
int parent[vertices];//树的深度
int rank_[vertices]={0};
void init(int a[])
{
    for(int i = 0 ; i <vertices ; i ++)
    {
        parent[i] = -1;
    }
}
int find_root(int x ,int father[])
{
    int x_root = x;
    while( parent[x_root] != -1)
    {
        x_root = parent[x_root];
    }
    return x_root;
}
int union_vertices(int x , int y, int parent[],int rank_[])
{
    int x_root = find_root(x,parent);
    int y_root = find_root(y,parent);
    if (x_root == y_root){
        return 0;
    }
    else{
        //parent[x_root] = y_root;
        if( rank_[x_root] > rank_[y_root]){
            parent[y_root] = x_root;
        }
        else if ( rank_[y_root] > rank_[x_root]){
            parent[x_root] = y_root;
        }
        else{
            parent[x_root] = y_root;
            rank_[y_root]++;
        }
        return 1;
    }
}
int main()
{
    init(parent);
    int edge[6][2]={ {0,1} ,{2,4},{1,2},{1,3},{2,5},{3,4}};
    for(int i = 0 ; i < 6 ; i ++){
        int x = edge[i][0];
        int y = edge[i][1];
        if( union_vertices( x , y , parent,rank_) == 0) {
            cout<<" circle dectect"<<endl;
            exit(0);
        }
    }
    cout << " NOT dectect"<<endl;
    return 0;
}

" circle dectect"<<endl;
            exit(0);
        }
    }
    cout << " NOT dectect"<<endl;
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

觅你风川间!!!

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值