-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path1110-delete-nodes-and-return-forest.js
45 lines (39 loc) · 1.2 KB
/
1110-delete-nodes-and-return-forest.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
/**
* 1110. Delete Nodes And Return Forest
* https://leetcode.com/problems/delete-nodes-and-return-forest/
* Difficulty: Medium
*
* Given the root of a binary tree, each node in the tree has a distinct value.
*
* After deleting all nodes with a value in toDelete, we are left with a forest (a disjoint
* union of trees).
*
* Return the roots of the trees in the remaining forest. You may return the result in any order.
*/
/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {TreeNode} root
* @param {number[]} toDelete
* @return {TreeNode[]}
*/
var delNodes = function(root, toDelete) {
const deleteSet = new Set(toDelete);
const forest = [];
traverse(root, true);
return forest;
function traverse(node, isRoot) {
if (!node) return null;
const shouldDelete = deleteSet.has(node.val);
if (isRoot && !shouldDelete) forest.push(node);
node.left = traverse(node.left, shouldDelete);
node.right = traverse(node.right, shouldDelete);
return shouldDelete ? null : node;
}
};