107.Binary Tree Level Order Traversal II(M)

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

1.Description(Medium)

Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root).

Example

Given binary tree {3,9,20,#,#,15,7},

    3
   / \
  9  20
    /  \
   15   7

return its bottom-up level order traversal as:

[
  [15,7],
  [9,20],
  [3]
]

2.Code

跟69.I思想一样,就是最后再用个arrayList把结果倒过来存一遍。

Last updated

Was this helpful?