-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathfind-leaves-of-binary-tree.js
72 lines (63 loc) · 1.19 KB
/
find-leaves-of-binary-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
/**
* Find Leaves of Binary Tree
*
* Given a binary tree, collect a tree's nodes as if you were doing this: Collect and remove all leaves, repeat until
* the tree is empty.
*
* Example:
*
* Input: [1,2,3,4,5]
*
* 1
* / \
* 2 3
* / \
* 4 5
*
* Output: [[4,5,3],[2],[1]]
*
*
* Explanation:
*
* 1. Removing the leaves [4,5,3] would result in this tree:
*
* 1
* /
* 2
*
* 2. Now removing the leaf [2] would result in this tree:
*
* 1
*
* 3. Now removing the leaf [1] would result in the empty tree:
*
* []
*/
/**
* Definition for a binary tree node.
* function TreeNode(val) {
* this.val = val;
* this.left = this.right = null;
* }
*/
/**
* @param {TreeNode} root
* @return {number[][]}
*/
const findLeaves = root => {
const result = [];
const getHeight = node => {
if (!node) {
return -1;
}
const height = 1 + Math.max(getHeight(node.left), getHeight(node.right));
if (!result[height]) {
result[height] = [];
}
result[height].push(node.val);
return height;
};
getHeight(root);
return result;
};
export { findLeaves };