LeetCode 1361.验证二叉树

欢迎来访

分析

若是二叉树应该满足下面3个条件:
1.有且仅有一个根节点(入度为0)。
2.其他的节点的入度均为1。
3.所有的节点均在一棵树上(其实这个就相当于条件1了)。

c++代码

class Solution {
public:
    bool validateBinaryTreeNodes(int n, vector<int>& leftChild, vector<int>& rightChild) {
        vector<int> indegree(n, 0);
        for (int i = 0; i < n; i++){
            if (leftChild[i] != -1) indegree[leftChild[i]]++;
            if (rightChild[i] != -1) indegree[rightChild[i]]++;
        }
        
        int root = -1;
        // 要明确的是跳出这个循环有两种可能性:1.找到root 2.遍历完所有的点
        for (int i = 0; i < n; i++){
            if (indegree[i] == 0){
                root = i;
                break;
            }
        }
        if (root == -1) return false;

        //cout << "root:" << root << endl;
        
        vector<bool> vis(n, false);
        queue<int> q;
        q.push(root);
        vis[root] = true;
        while (q.size()){
            int t = q.front();
            q.pop();
            if (leftChild[t] != -1){
                if (vis[leftChild[t]]) return false;
                else{
                    q.push(leftChild[t]);
                    vis[leftChild[t]] = true;
                }
            }
            if (rightChild[t] != -1){
                if (vis[rightChild[t]]) return false;
                else{
                    q.push(rightChild[t]);
                    vis[rightChild[t]] = true;
                }
            }
        }
        //cout << "here" << endl;
        for (int i = 0; i < n; i++){
            if (!vis[i]) {
                //cout << i << endl;
                return false;
            }
        }
        return true;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值