Binary Tree Right Side View
Given a binary tree, imagine yourself standing on the_right_side of it, return the values of the nodes you can see ordered from top to bottom.
Example
Input:
[1,2,3,null,5,null,4]
Output:
[1, 3, 4]
Explanation:
1 <---
/ \
2 3 <---
\ \
5 4 <---Note
层次遍历,这里最关键的一点是,最优先搞right(无论写法是递归还是迭代)
每层的第一个元素就是最右边的
Code
Last updated