107 Binary Tree Level Order Traversal II – Easy
Problem:
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},
/ 9 20 / 15 7 return its bottom-up level order traversal as:
[ [15,7], [9,20], [3] ]
Thoughts:
This is almost identical to version I. Only difference is the order of the level elements.
Solutions:
Previous106 Construct Binary Tree from Inorder and Postorder Traversal – MediumNext108 Convert Sorted Array to Binary Search Tree – Medium
Last updated