Difficult:Medium
題目
Given the root of a binary tree, return the bottom-up level order traversal of its nodes’ values. (i.e., from left to right, level by level from leaf to root).
翻譯
給定二叉樹的根,返回其節點值的自下而上級別順序遍歷。 (即從左到右,從葉到根逐級)。
範例
Example 1:
1 | Input: root = [3,9,20,null,null,15,7] |
Example 2:
1 | Input: root = [1] |
Example 3:
1 | Input: root = [] |
解題思路
1.從上到下往下搜尋,將每個層的值塞入自己的層級陣列裡
2.由於得到的是從上到下,須將陣列反轉
Solution
1 | var levelOrderBottom = function (root) { |