博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
剑指Offer:二叉树打印成多行【23】
阅读量:5087 次
发布时间:2019-06-13

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

 剑指Offer:二叉树打印成多行【23】

题目描述

从上到下按层打印二叉树,同一层结点从左至右输出。每一层输出一行。

题目分析 

  

Java题解

package tree;import java.util.ArrayList;import java.util.LinkedList;import java.util.Queue;public class PrintByLevel {    public static void main(String[] args) {        TreeNode t1 = new TreeNode(1);        TreeNode t2 = new TreeNode(2);        TreeNode t3 = new TreeNode(3);        TreeNode t4 = new TreeNode(4);        TreeNode t5 = new TreeNode(5);        t1.left=t2;        t1.right=t3;        t2.left=t4;        t2.right=t5;    }    static ArrayList
> Print(TreeNode pRoot) { ArrayList
> re = new ArrayList<>(); if (pRoot==null) return re; Queue
queue = new LinkedList<>(); queue.add(pRoot); int nextLevel =0; int toBePrinted = 1; ArrayList
cuLevel = new ArrayList<>(); while (!queue.isEmpty()) { TreeNode tmp = queue.poll(); cuLevel.add(tmp.val); if(tmp.left!=null) { queue.add(tmp.left); nextLevel++; } if(tmp.right!=null) { queue.add(tmp.right); nextLevel++; } toBePrinted--; if(toBePrinted==0) { re.add(cuLevel); cuLevel = new ArrayList<>(); toBePrinted = nextLevel; nextLevel=0; } } return re; }}

  

 

转载于:https://www.cnblogs.com/MrSaver/p/9321112.html

你可能感兴趣的文章
jQuery.form.js使用
查看>>
(转)linux sort,uniq,cut,wc命令详解
查看>>
关于ExecuteNonQuery执行的返回值(SQL语句、存储过程)
查看>>
UVa540 Team Queue(队列queue)
查看>>
mysql数据增删改查
查看>>
akka之种子节点
查看>>
不知道做什么时
查看>>
matlab 给某一列乘上一个系数
查看>>
密码学笔记——培根密码
查看>>
Screening technology proved cost effective deal
查看>>
MAC 上升级python为最新版本
查看>>
创业老板不能犯的十种错误
查看>>
Animations介绍及实例
查看>>
判断请求是否为ajax请求
查看>>
【POJ2699】The Maximum Number of Strong Kings(网络流)
查看>>
spring boot配置跨域
查看>>
BZOJ 1996 合唱队(DP)
查看>>
进击吧!阶乘——大数乘法
查看>>
安卓学习资料推荐-25
查看>>
Mysql数据库备份和还原常用的命令
查看>>