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).
For example:
Given binary tree [3,9,20,null,null,15,7],
3
/ \
9 20
/ \
15 7
return its bottom-up level order traversal as:
[
[15,7],
[9,20],
[3]
]
解法1:BST + Two container
用按层遍历(one queue)的办法遍历得出每一层的vector,然后放入一个stack,最后按顺序读出vector中的值即可。
C++
Java