图解二叉树的三种遍历方式及java实现代码

作者:Acamy丶 时间:2022-02-08 12:03:32 

二叉树(binary tree)是一颗树,其中每个节点都不能有多于两个的儿子。

1.二叉树节点

作为图的特殊形式,二叉树的基本组成单元是节点与边;作为数据结构,其基本的组成实体是二叉树节点(binary tree node),而边则对应于节点之间的相互引用。

如下,给出了二叉树节点的数据结构图示和相关代码:

图解二叉树的三种遍历方式及java实现代码


 // 定义节点类:
 private static class BinNode {
   private Object element;
   private BinNode lChild;// 定义指向左子树的指针
   private BinNode rChild;// 定义指向右子树的指针

public BinNode(Object element, BinNode lChild, BinNode rChild) {
     this.element = element;
     this.lChild = lChild;
     this.rChild = rChild;
   }
 }

2.递归遍历

二叉树本身并不具有天然的全局次序,故为实现遍历,需通过在各节点与其孩子之间约定某种局部次序,间接地定义某种全局次序。

按惯例左兄弟优先于右兄弟,故若将节点及其孩子分别记作V、L和R,则下图所示,局部访问的次序可有VLR、LVR和LRV三种选择。根据节点V在其中的访问次序,三种策略也相应地分别称作先序遍历、中序遍历和后序遍历,下面将分别介绍。

图解二叉树的三种遍历方式及java实现代码

2.1 先序遍历

图示:

图解二叉树的三种遍历方式及java实现代码

代码实现:


 /**
  * 对该二叉树进行前序遍历 结果存储到list中 前序遍历
  */
 public static void preOrder(BinNode node) {
   list.add(node); // 先将根节点存入list
   // 如果左子树不为空继续往左找,在递归调用方法的时候一直会将子树的根存入list,这就做到了先遍历根节点
   if (node.lChild != null) {
     preOrder(node.lChild);
   }
   // 无论走到哪一层,只要当前节点左子树为空,那么就可以在右子树上遍历,保证了根左右的遍历顺序
   if (node.rChild != null) {
     preOrder(node.rChild);
   }
 }

2.2 中序遍历

图示:

图解二叉树的三种遍历方式及java实现代码

代码实现:


 /**
  * 对该二叉树进行中序遍历 结果存储到list中
  */
 public static void inOrder(BinNode node) {
   if (node.lChild != null) {
     inOrder(node.lChild);
   }
   list.add(node);
   if (node.rChild != null) {
     inOrder(node.rChild);
   }
 }

2.3 后序遍历

实例图示:

图解二叉树的三种遍历方式及java实现代码

代码实现:


 /**
  * 对该二叉树进行后序遍历 结果存储到list中
  */
 public static void postOrder(BinNode node) {
   if (node.lChild != null) {
     postOrder(node.lChild);
   }
   if (node.rChild != null) {
     postOrder(node.rChild);
   }
   list.add(node);
 }

附:测试相关代码


 private static BinNode root;
 private static List<BinNode> list = new ArrayList<BinNode>();

public static void main(String[] args) {
   init();
   // TODO Auto-generated method stub
   //preOrder(root);
   //inOrder(root);
   postOrder(root);
   for (int i = 0; i < list.size(); i++) {
     System.out.print(list.get(i).element + " ");
   }
 }

// 树的初始化:先从叶节点开始,由叶到根
 public static void init() {
   BinNode b = new BinNode("b", null, null);
   BinNode a = new BinNode("a", null, b);
   BinNode c = new BinNode("c", a, null);

BinNode e = new BinNode("e", null, null);
   BinNode g = new BinNode("g", null, null);
   BinNode f = new BinNode("f", e, g);
   BinNode h = new BinNode("h", f, null);

BinNode d = new BinNode("d", c, h);

BinNode j = new BinNode("j", null, null);
   BinNode k = new BinNode("k", j, null);
   BinNode m = new BinNode("m", null, null);
   BinNode o = new BinNode("o", null, null);
   BinNode p = new BinNode("p", o, null);
   BinNode n = new BinNode("n", m, p);
   BinNode l = new BinNode("l", k, n);

root = new BinNode("i", d, l);
 }

来源:http://www.jianshu.com/p/f0a6d594711d

标签:java,二叉树,遍历
0
投稿

猜你喜欢

  • MybatisPlus代码生成器的使用方法详解

    2021-08-26 07:51:38
  • WinForm实现为TextBox设置水印文字功能

    2023-06-09 21:15:38
  • Maven依赖作用域和依赖传递的使用

    2022-07-24 19:08:33
  • C语言数据结构之二叉树的非递归后序遍历算法

    2021-12-23 07:10:52
  • Java使用反射创建对象示例

    2023-10-14 11:31:44
  • Android获取手机型号/系统版本号/App版本号等信息实例讲解

    2021-09-29 06:50:34
  • 详解C#中的字符串拼接@ $

    2021-07-10 13:13:41
  • C#中数组Array,ArrayList,泛型List详细对比

    2023-02-22 05:44:33
  • Springboot整合log4j2日志全解总结

    2021-12-27 22:56:58
  • Java异常 Factory method'sqlSessionFactory'rew exception;ested exception is java.lang.NoSuchMethodError:

    2022-03-25 15:06:42
  • Springboot 在普通类型注入Service或mapper

    2023-11-29 15:26:21
  • Netty分布式pipeline管道创建方法跟踪解析

    2023-11-03 02:55:51
  • ThreadLocal工作原理及用法案例

    2021-11-13 04:22:39
  • Android List(集合)中的对象以某一个字段排序案例

    2021-10-07 03:28:39
  • 纯Java代码实现流星划过天空

    2022-06-01 12:12:35
  • Kotlin协程flowOn与线程切换超详细示例介绍

    2022-11-06 08:31:51
  • python如何调用java类

    2022-03-13 16:11:10
  • Java使用通配符实现增强泛型详解

    2021-07-06 17:28:01
  • HTTP基本认证(Basic Authentication)的JAVA实例代码

    2022-06-08 13:03:32
  • Java毕业设计实战之医院心理咨询问诊系统的实现

    2022-07-04 19:02:21
  • asp之家 软件编程 m.aspxhome.com