LeetCode contest 177 5170. 验证二叉树

简介: LeetCode contest 177 5170. 验证二叉树

LeetCode contest 177 5170. 验证二叉树


Table of Contents

中文版:

英文版:

My answer:

解题报告

中文版:

二叉树上有 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

英文版:

You have n binary tree nodes numbered from 0 to n - 1 where node i has two children leftChild[i] and rightChild[i], return true if and only if all the given nodes form exactly one valid binary tree.
If node i has no left child then leftChild[i] will equal -1, similarly for the right child.
Note that the nodes have no values and that we only use the node numbers in this problem.
Example 1:
Input: n = 4, leftChild = [1,-1,3,-1], rightChild = [2,-1,-1,-1]
Output: true
Example 2:
Input: n = 4, leftChild = [1,-1,3,-1], rightChild = [2,3,-1,-1]
Output: false
Example 3:
Input: n = 2, leftChild = [1,0], rightChild = [-1,-1]
Output: false
Example 4:
Input: n = 6, leftChild = [1,-1,-1,4,-1,-1], rightChild = [2,-1,-1,5,-1,-1]
Output: false
Constraints:
1 <= n <= 10^4
leftChild.length == rightChild.length == n
-1 <= leftChild[i], rightChild[i] <= n - 1

My answer:

# 算法:只有根节点没有父节点,其余节点都只有一个父节点。
class Solution:
    def validateBinaryTreeNodes(self, n: int, leftChild: List[int], rightChild: List[int]) -> bool:
        parent_list = [0] * n
        for i in range(len(leftChild)):
            if leftChild[i] != -1:
                parent_list[leftChild[i]] += 1
            if rightChild[i] != -1:
                parent_list[rightChild[i]] += 1
        print(parent_list)
        num_zero = 0
        num_one = 0
        num_other = 0
        for x in parent_list:
            if x == 0:
                num_zero += 1
            elif x == 1:
                num_one += 1
            else:
                num_other += 1
        return num_zero == 1 and num_one == n-1 and num_other == 0  

代码优化后:

# 算法:只有根节点没有父节点,其余节点都只有一个父节点。
class Solution:
    def validateBinaryTreeNodes(self, n: int, leftChild: List[int], rightChild: List[int]) -> bool:
        parent_list = [0] * n
        for i in range(n):
            if leftChild[i] != -1:
                parent_list[leftChild[i]] += 1
            if rightChild[i] != -1:
                parent_list[rightChild[i]] += 1
        # print(parent_list)
        num_zero = 0
        num_one = 0
        # num_other = 0
        for x in parent_list:
            if x == 0:
                num_zero += 1
            elif x == 1:
                num_one += 1
            # else:
            #     num_other += 1
        # return num_zero == 1 and num_one == n-1 and num_other == 0  
        return num_zero == 1 and num_one == n-1

解题报告:

1、如何判断二叉树

只有一个根节点,只有根节点没有父节点,其余节点只有一个父节点。

2、parent_list 代表 n 个节点是否有父节点,下标 index 代表 n 个节点,parent_list[index] 代表 index 这个节点有几个父节点。

相关文章
|
1月前
【LeetCode 31】104.二叉树的最大深度
【LeetCode 31】104.二叉树的最大深度
20 2
|
1月前
【LeetCode 29】226.反转二叉树
【LeetCode 29】226.反转二叉树
16 2
|
1月前
【LeetCode 43】236.二叉树的最近公共祖先
【LeetCode 43】236.二叉树的最近公共祖先
19 0
|
1月前
【LeetCode 40】98.验证二叉搜索树
【LeetCode 40】98.验证二叉搜索树
11 0
|
1月前
【LeetCode 38】617.合并二叉树
【LeetCode 38】617.合并二叉树
14 0
|
1月前
【LeetCode 37】106.从中序与后序遍历构造二叉树
【LeetCode 37】106.从中序与后序遍历构造二叉树
17 0
|
1月前
【LeetCode 34】257.二叉树的所有路径
【LeetCode 34】257.二叉树的所有路径
17 0
|
1月前
【LeetCode 32】111.二叉树的最小深度
【LeetCode 32】111.二叉树的最小深度
16 0
|
2月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
3月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
114 2