数据结构----二叉树

1.二叉树的遍历

1.1前序遍历

遍历结果:1 2 3 4 5 6

特点:先打印 根--左树--右树(按这个顺序进入节点就打印)

1.2中序遍历

遍历结果:3 2 1 5 4 6

特点:先打印 左树--根--右树(按这个顺序进入左节点后再出左节点打印)

1.3后序遍历

遍历结果:3 2 5 6 4 1

特点:先打印 左树--右树--根(按这个顺序进入节点后再出节点打印)(左右全走)

代码实现:

复制代码
public class BinaryTree {
      public static class BTNode {
          BTNode left;
          BTNode right;
          int value;

          public BTNode(int value) {
              this.value = value;
          }
      }
      private BTNode root;
    public BTNode createBinaryTree(){
        BTNode node1 = new BTNode(1);
        BTNode node2 = new BTNode(2);
        BTNode node3 = new BTNode(3);
        BTNode node4 = new BTNode(4);
        BTNode node5 = new BTNode(5);
        BTNode node6 = new BTNode(6);
        root = node1;
        node1.left = node2;
        node2.left = node3;
        node1.right = node4;
        node4.left = node5;
        node4.right = node6;
        return root;
    }

    // 前序遍历
    void preOrder(BTNode root){
        if(root == null) {
            return;
        }
        System.out.print(root.value + " ");
        preOrder(root.left);
        preOrder(root.right);
    }

    // 中序遍历
    void inOrder(BTNode root){
        if(root == null) {
            return;
        }
        inOrder(root.left);
        System.out.print(root.value + " ");
        inOrder(root.right);
    }
    // 后序遍历
    void postOrder(BTNode root){
        if(root == null) {
            return;
        }
        postOrder(root.left);
        postOrder(root.right);
        System.out.print(root.value + " ");
    }



}

2.二叉树的基本操作

2.1获取树中节点个数

第一种方法:

左右树的思想

整棵树节点=左数节点+右数节点个数+1;

然后递归该方法完成。

复制代码
    int size(BTNode root){
        //节点数=左+右+1
        if(root == null) {
            return 0;
        }
        return size(root.left) + size(root.right) + 1;
    }

第二种方法:

计数器,也是最容易想到的方法。

遍历整个树,终止条件为空。

复制代码
public void size(BTNode root){
        //计数器
        if(root == null) {
            return;
        }
        NodeSize++;
        size(root.left);
        size(root.right);
    }

2.2获取叶子节点个数

第一种方法:

同样是最简单的计数器方法。

计数条件是当节点的左右都为空时加一。

复制代码
    public void getLeafNodeCount1(BTNode root){
        if(root == null) {
            return;
        }
        if(root.left == null && root.right == null) {
            leafCount++;
        }
        getLeafNodeCount1(root.left);
        getLeafNodeCount1(root.right);
    }

注意:该方法没有返回值,结果存储在计数器上。

第二种方法:

利用递归返回值解决问题。

复制代码
    public int getLeafNodeCount2(BTNode root){
        if(root == null) {
            return 0;
        }
        int count = 0;
        if(root.left == null && root.right == null) {
            return 1;
        }
        return getLeafNodeCount2(root.left) + getLeafNodeCount2(root.right);
    }

2.3获取第K层节点的个数

使左右同时递归,满足第K层时+1,即可利用递归返回值解决。

复制代码
    int getKLevelNodeCount(BTNode root,int k){
        if(root == null) return -1;
        if(k == 1) {
            return 1;
        }
        return getKLevelNodeCount(root.right,k-1)
                + getKLevelNodeCount(root.left,k-1);
    }

2.4获取二叉树的高度

同样利用左右树思想,整个树高度=Max(左树高度+右数高度 )+1

复制代码
    int getHeight(BTNode root){
        if(root == null) return 0;
        int leftHeight = getHeight(root.left);
        int rightHeight = getHeight(root.right);
        return Math.max(rightHeight,leftHeight) + 1;
    }

2.5检测值为value的元素是否存在

左右遍历整棵树即可。

复制代码
    BTNode find(BTNode root, int val){
        if(root == null) return null;
        if(root.value == val) {
            return root;
        }
        BTNode tmp1 = find(root.left,val);
        if(tmp1 != null){
            return tmp1;
        }
        BTNode tmp2 = find(root.right,val);
        if(tmp2 != null){
            return tmp2;
        }
        return null;
    }

2.6层序遍历

层序遍历是逐层打印

思路:

根---左右紧接着相邻打印

使用队列来实现(递归会造成先打印左数再打印右树的情况)

代替递归的小小办法

复制代码
    void levelOrder(BTNode root){
        if(root == null) return;
        Queue<BTNode> queue = new LinkedList<BTNode>();
        queue.offer(root);
        while(!queue.isEmpty()) {
            BTNode cur = queue.poll();
            System.out.print(cur.value + " ");
            if(cur.left != null) {
                queue.offer(cur.left);
            }
            if(cur.right != null) {
                queue.offer(cur.right);
            }
        }
    }
相关推荐
爱思德学术19 分钟前
中国计算机学会(CCF)推荐学术会议-B(交叉/综合/新兴):BIBM 2025
算法
冰糖猕猴桃30 分钟前
【Python】进阶 - 数据结构与算法
开发语言·数据结构·python·算法·时间复杂度、空间复杂度·树、二叉树·堆、图
lifallen43 分钟前
Paimon vs. HBase:全链路开销对比
java·大数据·数据结构·数据库·算法·flink·hbase
liujing102329292 小时前
Day04_刷题niuke20250703
java·开发语言·算法
2401_881244402 小时前
Treap树
数据结构·算法
乌萨奇也要立志学C++2 小时前
二叉树OJ题(单值树、相同树、找子树、构建和遍历)
数据结构·算法
网安INF2 小时前
深度学习中的逻辑回归:从原理到Python实现
人工智能·python·深度学习·算法·逻辑回归
wsxqaz2 小时前
浏览器原生控件上传PDF导致hash值不同
算法·pdf·哈希算法
NAGNIP3 小时前
Transformer注意力机制——MHA&MQA&GQA
人工智能·算法
摘星编程3 小时前
多模态AI Agent技术栈解析:视觉-语言-决策融合的算法原理与实践
人工智能·算法·多模态ai·视觉语言融合·ai决策算法