leetcode 684. 冗余连接(并查集)

在这里插入图片描述

	class unionfind{
public:
    vector<int>father;
    unionfind(const int &num){//num表示元素的个数
        for(int i = 0; i < num; i++){
            father.push_back(i);//箭头指向自己
        }
    }
    int find(const int &n){
        //递归
        if(father[n] == n)
            return n;
        father[n] = find(father[n]);//路径压缩版本
        return father[n];
    }
    bool myunion(const int &a,const int &b){
        if(father[a]==b||father[b]==a)return true;//判断是否是一个集合元素
        int fa = find(a);
        int fb = find(b);
        bool res=fa==fb;
        father[fb] = fa;
        return res;
    }
};

class Solution {
public:
    vector<int> findRedundantConnection(vector<vector<int>>& edges) {
       int n=edges.size();
       vector<int>ans(2,0);
       unionfind F(n+1);
       for(int i=0;i<n;i++)
       {
         int a=edges[i][0];
         int b=edges[i][1];
         bool isok=F.myunion(a,b);
         if(isok)//如果是一个集合的元素就更新答案,因为题目要求是最后一个;
         {
           ans[0]=a;
           ans[1]=b;
         }
         
       }
      return ans;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值