前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >剑指offer代码解析——面试题23从上往下打印二叉树

剑指offer代码解析——面试题23从上往下打印二叉树

作者头像
大闲人柴毛毛
发布2018-03-09 12:03:33
6340
发布2018-03-09 12:03:33
举报
文章被收录于专栏:大闲人柴毛毛

本题的详细分析过程均在代码注释中:

代码语言:javascript
复制
import java.util.Queue;
import java.util.concurrent.LinkedBlockingQueue;

/**
 * 题目:从上到下打印二叉树的结点,同一层的结点按照从左到右的顺序打印。
 * @author 大闲人柴毛毛
 * @date 2016年3月15日
 */
public class PrintBinaryTree {
	/**
	 * 分析:学过数据结构便可知,本题实则为宽度优先遍历二叉树。
	 * 在数据结构中,深度优先遍历一棵二叉树有三种方式:先序遍历、中序遍历、后序遍历。他们均可采用递归,代码非常简洁。
	 * 而宽度优先遍历二叉树可采用迭代,并借助一个辅助的队列来存储尚未遍历的结点,下面是详细过程。
	 */
	
	/**
	 * 首先需要创建一个队列,用于存储尚未打印的结点。
	 * 首先让根结点入队,然后重复一下操作,直到对为空为止:
	 * 从队首取出一个结点,并打印该结点,若该结点有孩子,则按照先左后右的顺序将左右孩子入队。
	 * 重复上述操作,当队为空时,遍历结束。
	 */
	
	public static boolean printBinaryTree(BinaryTreeNode<Integer> root){
		//若树为空
		if(root==null){
			System.out.println("树为空!");
			return false;
		}
		
		//创建队列
		Queue<BinaryTreeNode<Integer>> queue = new LinkedBlockingQueue<BinaryTreeNode<Integer>>();
		//将根结点入队
		queue.add(root);
		//当队不为空时
		while(!queue.isEmpty()){
			//取出队首结点
			BinaryTreeNode<Integer> first_node = queue.poll();
			System.out.println(first_node.data);
			//若该结点有孩子,则按照先左后右的顺序将孩子入队
			if(first_node.left!=null)
				queue.add(first_node.left);
			if(first_node.right!=null)
				queue.add(first_node.right);
		}
		return true;
	}
	
	
	
	/**
	 * 测试
	 */
	public static void main(String[] args){
		//构建二叉树
		BinaryTreeNode<Integer> root = new BinaryTreeNode<Integer>();
		BinaryTreeNode<Integer> node1 = new BinaryTreeNode<Integer>();
		BinaryTreeNode<Integer> node2 = new BinaryTreeNode<Integer>();
		BinaryTreeNode<Integer> node3 = new BinaryTreeNode<Integer>();
		BinaryTreeNode<Integer> node4 = new BinaryTreeNode<Integer>();
		BinaryTreeNode<Integer> node5 = new BinaryTreeNode<Integer>();
		
		root.data = 1;
		node1.data = 2;
		node2.data = 3;
		node3.data = 4;
		node4.data = 5;
		node5.data = 6;
		
		root.left = node1;
		root.right = node2;
		
		node1.left = node3;
		node1.right = node4;

		node2.right = node5;
		
		printBinaryTree(root);
	}
}




/**
 * 二叉树的结点
 */
class BinaryTreeNode<T>{
	T data;//结点的数据域
	BinaryTreeNode<T> left;//左子树
	BinaryTreeNode<T> right;//右子树
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2016年03月15日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档