java实现按层遍历二叉树
作者:pengzhisen123 时间:2021-12-04 06:58:35
本文实例为大家分享了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.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<data.length;i++){
insert1(data[i]);
}
}
public void layerTranverse(){
if(this.root==null){
return;
}
Queue<Node1> q=new LinkedList<Node1>();
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
来源:https://blog.csdn.net/pengzhisen123/article/details/79556459
标签:java,遍历,二叉树
0
投稿
猜你喜欢
Android自定义View实现遥控器按钮
2021-12-27 09:50:47
C#缩略图多路径多格式保存的实例
2021-10-29 18:12:36
spring Boot打包部署到远程服务器的tomcat中
2023-01-14 21:45:28
winform获取当前名称实例汇总
2023-03-22 17:03:18
Android系统view与SurfaceView的基本使用及区别分析
2023-04-08 00:33:26
Android设备间实现蓝牙(Bluetooth)共享上网
2023-02-21 14:25:36
详解C#如何利用爬虫技术实现快捷租房
2021-11-02 21:49:38
Java 导出excel进行换行的案例
2021-07-29 04:09:36
基于java实现租车管理系统
2022-02-08 12:48:49
详解Spring框架入门
2023-08-14 12:56:14
梳理总结Java static关键字的方法作用
2023-06-09 04:06:17
java抛出异常的几种情况小结
2022-01-11 05:46:40
简单的一次springMVC路由跳转实现
2023-01-09 10:05:11
Java 并发编程之ThreadLocal详解及实例
2023-09-05 13:48:02
Java线程池必知必会知识点总结
2021-07-30 13:08:02
java实习--每天打卡十道面试题!
2021-12-06 15:22:19
Elasticsearch配置文件示例示范
2021-11-05 22:59:31
Android 后台发送邮件示例 (收集应用异常信息+Demo代码)
2022-06-24 16:31:06
WPF InkCanvas基本操作方法详解
2023-07-29 06:26:59
elasticsearch集群cluster示例详解
2023-12-11 16:49:27