18. 二叉树,完全二叉树,满二叉树,前序中序后序的遍历和查找和删除代码实现,以及创建二叉树

1. 为什么会有树这个数据结构

在这里插入图片描述

2.什么是满二叉树和完全二叉树

在这里插入图片描述

3.什么是前序中序后序

  • 前序 中左右
  • 中序 左中右
  • 后序 左右中
  • 他们之间的区别就是中间节点的位置

4. 如何创建一个二叉树

  • 对二叉树使用前中后序遍历
  • 对二叉树使用前中后序查找,他们的查找次数是不同的
package com.qin.tree;


public class BinaryTree {

    public static void main(String[] args) {

        //先创建一颗二叉树
        BinaryTreeDemo binaryTree = new BinaryTreeDemo();
        //创建需要的节点
        HeroNode root  = new HeroNode(1, "宋江");
        HeroNode node2 = new HeroNode(2, "吴用");
        HeroNode node3 = new HeroNode(3, "卢俊义");
        HeroNode node4 = new HeroNode(4, "林冲");
        HeroNode node5 = new HeroNode(5, "关胜");
        //说明我们先手动创建二叉树,后面使用递归的方式创建

        //两种方法创建
        root.left = node2;
        root.setRight(node3);
        node3.right = node4;
        node3.setLeft(node5);
        binaryTree.setRoot(root);

        //测试前序遍历
        System.out.println("前序遍历"); //1 2 3 4 ,1 2 3 5 4
        binaryTree.preOrder();


        //测试中序遍历
        System.out.println("中序遍历"); // 2 1 3 4 ,2 1 5 3 4
        binaryTree.infixOrder();


        //测试后序遍历
        System.out.println("后序遍历"); //2 4 3 1 ,2 5 4 3 1
        binaryTree.postOrder();


        System.out.println("=====================");

        HeroNode heroNode = binaryTree.preOrderSearch(6);
        if (heroNode!=null){
            System.out.printf("找到了,信息为no=%d name=%s",heroNode.no,heroNode.name);
        }else {
            System.out.println("没有这个信息");
        }

        System.out.println("=====================");

        //测试删除
        binaryTree.delNode(1);
        System.out.println("删除后");
        binaryTree.preOrder();


    }

}

//先创建HeroNode节点
class HeroNode{

    public int no;
    public String name;
    public HeroNode left; //默认null
    public HeroNode right; //默认null

    public HeroNode(int no, String name) {
        this.no = no;
        this.name = name;
    }

    @Override
    public String toString() {
        return "HeroNode{" +
                "no=" + no +
                ", name='" + name + '\'' +
                '}';
    }

    //编写前序遍历的方法
    public void preOrder(){
        System.out.println(this); //先输出父节点
        //递归向左子树遍历
        if (this.left!=null){
            this.left.preOrder();
        }
        //递归向右子树遍历
        if (this.right!=null){
            this.right.preOrder();
        }
    }

    //编写中序遍历的方法
    public void infixOrder(){
        //递归向左子树中序遍历
        if (this.left!=null){
            this.left.infixOrder();
        }
        //输出父节点
        System.out.println(this);
        //递归向右子树中序遍历
        if (this.right!=null){
            this.right.infixOrder();
        }
    }

    //编写后序遍历的方法
    public void postOrder(){
        if (this.left!=null){
            this.left.postOrder();
        }
        if (this.right!=null){
            this.right.postOrder();
        }
        System.out.println(this);
    }

    public int getNo() {
        return no;
    }

    public void setNo(int no) {
        this.no = no;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public HeroNode getLeft() {
        return left;
    }

    public void setLeft(HeroNode left) {
        this.left = left;
    }

    public HeroNode getRight() {
        return right;
    }

    public void setRight(HeroNode right) {
        this.right = right;
    }


    //前序遍历查找
    public HeroNode preOrderSearch(int no){
        //先比较当前节点是不是
        if (this.no == no){
            return this;
        }
        //判断当前节点的左子节点是否为空,如果不为空,则递归前序查找
        //如果左递归前序查找,找到节点,则返回
        HeroNode resNode = null;
        if (this.left!=null){
            resNode = this.left.preOrderSearch(no);
        }
        if (resNode!=null){ //说明左子树我们找到了
            return resNode;
        }
        //左递归前序查找,找到节点就返回,否者继续判断,当前节点的右子节点是否为空
        //如果不为空,则继续向右递归前序查找
        if (this.right!=null){
            resNode = this.right.preOrderSearch(no);
        }
        return resNode;
    }


    //中序遍历查找
    public HeroNode infixOrderSearch(int no){
        HeroNode resNode = null;
        //判断当前节点的左子节点是否为空,如果不为空,这递归中序查找
        if (this.left!=null){
            resNode = this.left.infixOrderSearch(no);
        }
        if (resNode!=null){
            return resNode;
        }
        if (this.no==no){
            return this;
        }
        if (this.right!=null){
            resNode = this.right.infixOrderSearch(no);
        }
        return resNode;
    }

    //后序遍历查找
    public HeroNode postOrderSearch(int no){
        HeroNode resNode = null;
        if (this.left!=null){
            resNode = this.left.postOrderSearch(no);
        }
        if (resNode!=null){
            return resNode;
        }
        if (this.right!=null){
            resNode = this.right.postOrderSearch(no);
        }
        if (resNode!=null){
            return resNode;
        }
        if (this.no==no){
            return this;
        }
        return resNode;
    }

    //递归删除节点
    //1. 如果删除的节点是叶子节点,则删除该节点
    //2. 如果删除的节点是非叶子节点,则删除该子树
    public void delNode(int no){
        //因为二叉树是单向的,所以我们判断当前节点的子节点是否需要删除,而不能判断当前节点需不需要删除


        //当前节点的左子节点不为空,并且左子节点就是要删除的节点,就将this.left==null,并且结束递归
        if(this.left!=null && this.left.no==no){
            this.left = null;
            return;
        }
        //当前节点的右子节点不为空,并且右子节点就是要删除的节点,就将this.right==null,并且结束递归
        if (this.right!=null && this.right.no==no){
            this.right = null;
            return;
        }
        //向左子树进行递归
        if (this.left!=null){
            this.left.delNode(no);
        }
        //向右递归
        if (this.left!=null){
            this.right.delNode(no);
        }

    }


}

//第一一个BinaryTree 二叉树
class BinaryTreeDemo{

    private HeroNode root;

    public void setRoot(HeroNode root) {
        this.root = root;
    }

    //前序遍历
    public void preOrder(){
        if (this.root!=null){
            this.root.preOrder();
        }else {
            System.out.println("二叉树为空,无法遍历");
        }
    }

    //中序遍历
    public void infixOrder(){
        if (this.root!=null){
            this.root.infixOrder();
        }else {
            System.out.println("二叉树为空,无法遍历");
        }
    }

    //后序遍历
    public void postOrder(){
        if (this.root!=null){
            this.root.postOrder();
        }else {
            System.out.println("二叉树为空,无法遍历");
        }
    }

    //前序查找
    public HeroNode preOrderSearch(int no){
        if (root!=null){
            return root.preOrderSearch(no);
        }else {
            return null;
        }
    }

    //中序查找
    public HeroNode infixOrderSearch(int no){
        if (root!=null){
            return root.infixOrderSearch(no);
        }else {
            return null;
        }
    }

    //后序查找
    public HeroNode postOrderSearch(int no){
        if (root!=null){
            return root.postOrderSearch(no);
        }else {
            return null;
        }
    }

    //删除节点
    public void delNode(int no){
        if (root!=null){
            if (root.no==no){
                root = null;
            }else {
                root.delNode(no);
            }
        }else {
            System.out.println("这是一个空树");
        }
    }

}
  • 结果

在这里插入图片描述

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值