码迷,mamicode.com
首页 > 其他好文 > 详细

剑指offer-从上往下打印二叉树22

时间:2019-02-21 21:52:14      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:列表   ott   return   solution   write   div   append   int   bottom   

题目描述

从上往下打印出二叉树的每个节点,同层节点从左至右打印。
class Solution:
    # 返回从上到下每个节点值列表,例:[1,2,3]
    def PrintFromTopToBottom(self, root):
        # write code here
        queen=[]
        res=[]
        if root is not None:
            queen.append(root)
            while len(queen) is not 0:
                temp=queen.pop(0)
                res.append(temp.val)
                if temp.left is not None:
                    queen.append(temp.left)
                if temp.right is not None:
                    queen.append(temp.right)
        return res

 

 

剑指offer-从上往下打印二叉树22

标签:列表   ott   return   solution   write   div   append   int   bottom   

原文地址:https://www.cnblogs.com/zhaiyansheng/p/10415403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!