Difficult:Medium
題目
Given the root of a binary tree, return the zigzag level order traversal of its nodes’ values. (i.e., from left to right, then right to left for the next level and alternate between).
翻譯
給定二叉樹的根,返回其節點值的鋸齒形級別順序遍歷。 (即,從左到右,然後從右到左進入下一個級別,並在兩者之間交替)。
範例
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.根據單雙數層級,依push或是unshift方式加入陣列裡面。
Solution
1 | var zigzagLevelOrder = function (root) { |