107 Binary Tree Level Order Traversal II
107. Binary Tree Level Order Traversal II
1. Question
Given a binary tree, return thebottom-up level ordertraversal 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 7return its bottom-up level order traversal as:
[
[15,7],
[9,20],
[3]
]2. Implementation
(1) BFS
(2) DFS
3. Time & Space Complexity
BFS: 时间复杂度: O(n), 空间复杂度: O(n)
DFS: 时间复杂度: O(n), 空间复杂度: O(n)
Last updated
Was this helpful?