码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • LeetCode每日一题(2196. Create Binary Tree From Descriptions)


    You are given a 2D integer array descriptions where descriptions[i] = [parenti, childi, isLefti] indicates that parenti is the parent of childi in a binary tree of unique values. Furthermore,

    If isLefti == 1, then childi is the left child of parenti.
    If isLefti == 0, then childi is the right child of parenti.
    Construct the binary tree described by descriptions and return its root.

    The test cases will be generated such that the binary tree is valid.

    Example 1:

    Input: descriptions = [[20,15,1],[20,17,0],[50,20,1],[50,80,0],[80,19,1]]
    Output: [50,20,80,15,17,19]
    Explanation: The root node is the node with value 50 since it has no parent.
    The resulting binary tree is shown in the diagram.

    Example 2:

    Input: descriptions = [[1,2,1],[2,3,0],[3,4,1]]
    Output: [1,2,null,null,3,4]

    Explanation: The root node is the node with value 1 since it has no parent.
    The resulting binary tree is shown in the diagram.

    Constraints:

    • 1 <= descriptions.length <= 104
    • descriptions[i].length == 3
    • 1 <= parenti, childi <= 105
    • 0 <= isLefti <= 1
    • The binary tree described by descriptions is valid.

    找到根节点,然后根据关系从上向下构建整棵树


    use std::cell::RefCell;
    use std::collections::{HashMap, HashSet};
    use std::rc::Rc;
    impl Solution {
        fn build(root: i32, children: &HashMap<i32, Vec<i32>>) -> Option<Rc<RefCell<TreeNode>>> {
            if root == -1 {
                return None;
            }
            let mut node = TreeNode::new(root);
            if let Some(c) = children.get(&root) {
                node.left = Solution::build(c[0], children);
                node.right = Solution::build(c[1], children);
            }
            Some(Rc::new(RefCell::new(node)))
        }
        pub fn create_binary_tree(descriptions: Vec<Vec<i32>>) -> Option<Rc<RefCell<TreeNode>>> {
            let mut children = HashMap::new();
            let mut root = HashSet::new();
            let mut removed = HashSet::new();
            for desc in descriptions {
                children.entry(desc[0]).or_insert(vec![-1, -1])[(desc[2] - 1).abs() as usize] = desc[1];
                if !removed.contains(&desc[0]) {
                    root.insert(desc[0]);
                }
                root.remove(&desc[1]);
                removed.insert(desc[1]);
            }
            if root.len() != 1 {
                unreachable!()
            }
    
            for r in root {
                return Solution::build(r, &children);
            }
            unreachable!()
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
  • 相关阅读:
    目标检测YOLO实战应用案例100讲-基于深度学习的可见光遥感图像目标检测(下)
    浙江DAMA-CDGA/CDGP数据治理认证招生简章
    [PAT练级笔记] 32 Basic Level 1032 挖掘机技术哪家强
    膜拜大神,把微服务讲的又全又好的SpringCloud架构进阶
    2310d编译不过
    动态规划算法的题到底应该怎么做?思路教给你自己写
    【数据结构】顺序栈及其基本操作
    【uniapp uview】u--textarea组件custom validator check failed for prop “confirmType“
    springboot+mysql+jpa 多数据源
    如何创建属于自己的百度百科?这几个创建方法赶紧收藏
  • 原文地址:https://blog.csdn.net/wangjun861205/article/details/126022863
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号