鱼C论坛

 找回密码
 立即注册
查看: 1277|回复: 1

[技术交流] C++刷leetcode(1361. 验证二叉树)【并查集】【并查集rank优化】

[复制链接]
发表于 2020-6-1 12:33:53 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
题目描述:
二叉树上有 n 个节点,按从 0 到 n - 1 编号,其中节点 i 的两个子节点分别是 leftChild[i] 和 rightChild[i]。

只有 所有 节点能够形成且 只 形成 一颗 有效的二叉树时,返回 true;否则返回 false。

如果节点 i 没有左子节点,那么 leftChild[i] 就等于 -1。右子节点也符合该规则。

注意:节点没有值,本问题中仅仅使用节点编号。

 

示例 1:



输入:n = 4, leftChild = [1,-1,3,-1], rightChild = [2,-1,-1,-1]
输出:true
示例 2:



输入:n = 4, leftChild = [1,-1,3,-1], rightChild = [2,3,-1,-1]
输出:false
示例 3:





输入:n = 2, leftChild = [1,0], rightChild = [-1,-1]
输出:false
示例 4:



输入:n = 6, leftChild = [1,-1,-1,4,-1,-1], rightChild = [2,-1,-1,5,-1,-1]
输出:false
 

提示:

1 <= n <= 10^4
leftChild.length == rightChild.length == n
-1 <= leftChild[i], rightChild[i] <= n - 1

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/validate-binary-tree-nodes
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
class Solution {
public:
    int find_root(int x, vector<int> & father){
        if(x != father[x]) return find_root(father[x], father);
        return x;
    }
    bool uniton(int x, int y, vector<int> & father, vector<int> & rank){
        int temp1 = find_root(x, father);
        int temp2 = find_root(y, father);
        if(temp1 == temp2)return true;
        if(rank[temp1] < rank[temp2]){
            father[temp1] = temp2;
        }else if(rank[temp1] >= rank[temp2]){
            father[temp2] = temp1;
            if(rank[temp1] == rank[temp2]){
                rank[temp2]++;
            }
        }
        return false;
    }
    bool validateBinaryTreeNodes(int n, vector<int>& leftChild, vector<int>& rightChild) {
        vector<int> father(n, 0);
        vector<int> rank(n, 0);
        for(int i = 0; i < n; i++){
            father[i] = i;
            rank[i] = 1;
        }
        for(int i = 0; i < n; i++){
            if(leftChild[i] != -1){
                if(uniton(i, leftChild[i], father, rank)) return false;
            }
            if(rightChild[i] != -1){
                if(uniton(i, rightChild[i], father, rank)) return false;
            }
        }
        set<int> group;
        for(int i = 0; i < n; i++){
            group.insert(find_root(i, father));
            if(group.size() > 1) return false;
        }
        return true;
    }
};

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-6-1 12:36:08 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 19:38

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表