博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
剑指offer-从上往下打印二叉树22
阅读量:6762 次
发布时间:2019-06-26

本文共 583 字,大约阅读时间需要 1 分钟。

题目描述

从上往下打印出二叉树的每个节点,同层节点从左至右打印。
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

 

 

转载于:https://www.cnblogs.com/zhaiyansheng/p/10415403.html

你可能感兴趣的文章
GROUP BY 與 Null 值
查看>>
01题
查看>>
iOS获取当前设备方向
查看>>
用instsrv.exe将应用程序设置成服务
查看>>
字符型指针变量与字符数组的区别 <转>
查看>>
Collection与Collections的区别
查看>>
cookie 和session的简单比较
查看>>
翻转错误法线
查看>>
SVN cleanup失败的解决方案
查看>>
原生JS实现购物车功能
查看>>
VMware9中安装VMware tools
查看>>
在windows下使用binwalk
查看>>
泪奔,配好了bioconductor环境
查看>>
Oracle双实例切换
查看>>
SQL Server IO 子系统浅究 I
查看>>
HDU-2647-Reward
查看>>
Spring MVC 注解式
查看>>
elasticsearch基本操作之--使用QueryBuilders进行查询
查看>>
HTTP协议
查看>>
基于CentOS7.5的 Rsync 服务详解
查看>>