发布时间:2023-07-03 15:30
本文实例为大家分享了java实现按层遍历二叉树,按层遍历二叉树可以通过队列来实现。其主要思路如下:
1、先将根节点放入队列中
2、每次都从队列中取出一个结点打印该结点的值
3、若这个结点有子结点,则将它的子结点放入队列尾,知道队列为空。
实现代码如下:
import java.util.LinkedList;
import java.util.Queue;
public class LayerTranverse {
//按层遍历二叉树
public static void main(String[] args) {
BinaryTree1 biTree1=new BinaryTree1();
int[] data={2,8,7,4,9,3,1,6,5};
biTree1.buildTree1(data);
biTree1.layerTranverse();
}
}
class Node1{
public int data;
public Node1 left;
public Node1 right;
public Node1(int data){
this.data=data;
this.left=null;
this.right=null;
}
}
class BinaryTree1{
private Node1 root;
public BinaryTree1(){
root=null;
}
//将data数据插入到排序的二叉树中
public void insert1(int data){
Node1 newNode1=new Node1(data);
if(root==null){
root=newNode1;
}else{
Node1 current=root;
Node1 parent;
while(true){
parent=current;
if(data
current=current.left;
if(current==null){
parent.left=newNode1;
return;
}
}else{
current=current.right;
if(current==null){
parent.right=newNode1;
return;
}
}
}
}
}
public void buildTree1(int[] data){
for(int i=0;i
insert1(data[i]);
}
}
public void layerTranverse(){
if(this.root==null){
return;
}
Queue q=new LinkedList();
q.add(this.root);
while(!q.isEmpty()){
Node1 n=q.poll();
System.out.print(n.data);
System.out.print(" ");
if(n.left!=null){
q.add(n.left);
}
if(n.right!=null){
q.add(n.right);
}
}
}
}
运行结果为:
2 1 8 7 9 4 3 6 5
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
【电赛最全备赛资源】电赛历年赛题源码+老学长挥泪经验之谈(文章较长全网最全)+电赛论文写作模板及评分标准【19电磁炮、17板球、15风力摆、13倒立摆、94-21全国大学生电子设计竞赛历年真题】
SpringBoot整合ElasticSearch(第八更)
基于Selenium与Pytest框架的Web UI自动化测试系统的设计与实现
你在被窝里刷手机岁月静好,一个“神秘引擎”却在远方和时间赛跑
【八大排序④】归并排序、不基于比较的排序(计数排序、基数排序、桶排序)
八大误区,逐个击破(终篇):云难以扩展、定制性差,还会让管理员失去控制权?