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,#,#,15,7},
3
/ \
9 20
/ \
15 7
return its bottom-up level order traversal as:
[
[15,7]
[9,20],
[3],
]
题意:倒序输出层序遍历。
Binary Tree Level Order Traversal II
最新推荐文章于 2024-08-23 15:23:16 发布
400

被折叠的 条评论
为什么被折叠?



