https://leetcode.com/problems/binary-tree-level-order-traversal-ii/

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
/**
* Definition for a binary tree node.
* function TreeNode(val) {
* this.val = val;
* this.left = this.right = null;
* }
*/
/**
* @param {TreeNode} root
* @return {number[][]}
*/
var levelOrderBottom = function(root) {
let res = []
bfs(root, res, 0)
return res.reverse()
};

const bfs = (root, res, level) => {
if (!root) {
return
}
bfs(root.left, res, level + 1)
bfs(root.right, res, level + 1)
if (!res[level]) {
res[level] = [root.val]
} else {
res[level].push(root.val)
}
}