您的位置:首页 > 其它

Leetcode 199 Binary Tree Right Side View

2016-04-14 15:23 399 查看
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.

For example:
Given the following binary tree,

1            <---
/   \
2     3         <---
\     \
5     4       <---


You should return
[1, 3, 4]
.

BFS 每层都以从右向左的顺序扔数组里取出第一个到结果数组中,然后再对下一层同样操作。

class Solution(object):
def rightSideView(self, root):
if not root:
return []
a, ans = [root], []
while a:
b = []
ans.append(a[0].val)
for node in a:
if node.right:
b.append(node.right)
if node.left:
b.append(node.left)
a = b
return ans
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: