java二叉树按层遍历_java实现按层遍历二叉树

发布时间: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

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

ItVuer - 免责声明 - 关于我们 - 联系我们

本网站信息来源于互联网,如有侵权请联系:561261067@qq.com

桂ICP备16001015号