首页 > 其他 > 详细

Leetcode 199 Binary Tree Right Side View

时间:2016-04-14 16:02:42      阅读:167      评论:0      收藏:0      [点我收藏+]

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

Leetcode 199 Binary Tree Right Side View

原文:http://www.cnblogs.com/lilixu/p/5391245.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!