数据结构----二叉树

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);
            }
        }
    }
相关推荐
浮生如梦_1 小时前
Halcon基于laws纹理特征的SVM分类
图像处理·人工智能·算法·支持向量机·计算机视觉·分类·视觉检测
励志成为嵌入式工程师3 小时前
c语言简单编程练习9
c语言·开发语言·算法·vim
捕鲸叉4 小时前
创建线程时传递参数给线程
开发语言·c++·算法
A charmer4 小时前
【C++】vector 类深度解析:探索动态数组的奥秘
开发语言·c++·算法
wheeldown4 小时前
【数据结构】选择排序
数据结构·算法·排序算法
观音山保我别报错5 小时前
C语言扫雷小游戏
c语言·开发语言·算法
TangKenny7 小时前
计算网络信号
java·算法·华为
景鹤7 小时前
【算法】递归+深搜:814.二叉树剪枝
算法
iiFrankie7 小时前
SCNU习题 总结与复习
算法
Dola_Pan8 小时前
C++算法和竞赛:哈希算法、动态规划DP算法、贪心算法、博弈算法
c++·算法·哈希算法