-
Notifications
You must be signed in to change notification settings - Fork 24
/
0669-trim-a-binary-search-tree.js
88 lines (71 loc) · 1.7 KB
/
0669-trim-a-binary-search-tree.js
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
77
78
79
80
81
82
83
84
85
86
87
88
// 669. Trim a Binary Search Tree
// Easy 58% locked:false
// Given a binary search tree and the lowest and highest boundaries as L and R,
// trim the tree so that all its elements lies in [L, R] (R >= L). You might need
// to change the root of the tree, so the result should return the new root of
// the trimmed binary search tree.
// Example 1:
// Input:
// 1
// / \
// 0 2
// L = 1
// R = 2
// Output:
// 1
// \
// 2
// Example 2:
// Input:
// 3
// / \
// 0 4
// \
// 2
// /
// 1
// L = 1
// R = 3
// Output:
// 3
// /
// 2
// /
// 1
/**
* Definition for a binary tree node.
* function TreeNode(val) {
* this.val = val;
* this.left = this.right = null;
* }
*/
/**
* @param {TreeNode} root
* @param {number} L
* @param {number} R
* @return {TreeNode}
*/
const trimBST = function(root, L, R) {
if (root == void 0) return null
const val = root.val
if (val < L) return trimBST(root.right, L, R)
if (val > R) return trimBST(root.left, L, R)
root.left = trimBST(root.left, L, val)
root.right = trimBST(root.right, val, R)
return root
}
const TreeNode = require('../structs/TreeNode')
;[
[[1, 0, 2], 1, 2],
[[3, 0, 4, null, 2, null, null, 1], 1, 3],
].forEach(([array, L, R]) => {
console.log(trimBST(TreeNode.from(array), L, R))
})
// Solution:
// 递归求解。
// 如果节点小于 L ,节点及其右子树是不可能在范围内的,递归寻找左子树符合要求的。
// 如果节点大于 R ,同理。
// 如果节点在范围内,则递归获得其符合要求的左右子节点。
// 最后递归的进行要返回根节点,或null。
// 思路很清晰。
// Submission Result: Accepted