-
Notifications
You must be signed in to change notification settings - Fork 0
/
1361.验证二叉树.java
77 lines (74 loc) · 1.55 KB
/
1361.验证二叉树.java
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* @lc app=leetcode.cn id=1361 lang=java
*
* [1361] 验证二叉树
*
* https://leetcode-cn.com/problems/validate-binary-tree-nodes/description/
*
* algorithms
* Medium (48.91%)
* Likes: 22
* Dislikes: 0
* Total Accepted: 3.7K
* Total Submissions: 7.5K
* Testcase Example: '4\n[1,-1,3,-1]\n[2,-1,-1,-1]'
*
* 二叉树上有 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
*
*
*/
// @lc code=start
class Solution {
public boolean validateBinaryTreeNodes(int n, int[] leftChild, int[] rightChild) {
}
}
// @lc code=end