IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 二叉树-相关方法(Java实现) -> 正文阅读

[数据结构与算法]二叉树-相关方法(Java实现)

目录

1、判断完全二叉树

2、遍历

1)前序遍历

递归

?非递归

2)中序遍历

递归

非递归

3)后序遍历

递归

非递归

3、层级遍历

4、获取二叉树节点数

5、获取叶子节点数

6、获取第k层的节点数


树节点?

package com.mzp.tree;

/**
 * 平衡二叉树节点
 */
public class AVLTreeNode {
    private int data;
    //高度
    private int height;
    //左子节点
    private AVLTreeNode left;
    //右子节点
    private AVLTreeNode right;

    public AVLTreeNode(int data) {
        this.data = data;
        this.height = 1;
    }

    public int getData() {
        return data;
    }

    public void setData(int data) {
        this.data = data;
    }

    public int getHeight() {
        return height;
    }

    public void setHeight(int height) {
        this.height = height;
    }

    public AVLTreeNode getLeft() {
        return left;
    }

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

    public AVLTreeNode getRight() {
        return right;
    }

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

1、判断完全二叉树

    public static void main(String[] args) {
        AVLTreeNode root = new AVLTreeNode(1);
        AVLTreeNode left = new AVLTreeNode(2);
        AVLTreeNode right = new AVLTreeNode(3);
       root.setLeft(left);
        root.setRight(right);
        System.out.println(isBinaryTreeComplete(root));
    }
/**
     * 判断二叉树是否是完全二叉树
     * @param root
     * @return true表示该树是完全二叉树
     */
    public static boolean isBinaryTreeComplete(AVLTreeNode root){
        Queue<AVLTreeNode> queue = new LinkedList<>();
        if(root != null){
            queue.add(root);
        }else{
            return false;
        }
        while (!queue.isEmpty()){
            AVLTreeNode poll = queue.poll();
            if(poll == null){
                break;
            }
            queue.add(poll.getLeft());
            queue.add(poll.getRight());
        }
        while (!queue.isEmpty()){
            AVLTreeNode poll = queue.poll();
            if(poll != null){
                return false;
            }
        }
        return true;
    }

2、遍历

1)前序遍历

递归

//递归遍历 前序
    public void preTraversal(AVLTreeNode node){
        if(node == null){
            return;
        }else{
            System.out.print(node.getData() + " ");
            preTraversal(node.getLeft());
            preTraversal(node.getRight());
        }
    }

?非递归

/*
     * 非递归前序遍历
     */
    public void preTrasersal () {
        if (root != null) {
            Stack<AVLTreeNode> stack = new Stack<AVLTreeNode>();

            AVLTreeNode current = root;
            stack.add(current);
            while (!stack.isEmpty()) {
                current = stack.pop();
                System.out.print(current.getData()+ " ");

                if (current.getRight() != null) {
                    stack.add(current.getRight());
                }

                if (current.getLeft() != null) {
                    stack.add(current.getLeft());
                }
            }
        }
    }

2)中序遍历

递归

//递归遍历 中序
    public void inTraversal(AVLTreeNode node){
        if(node == null){
            return;
        }else{
            inTraversal(node.getLeft());
            System.out.print(node.getData() + " ");
            inTraversal(node.getRight());
        }
    }

非递归

/*
     * 非递归中序遍历
     */
    public void inTrasersal () {
        if (root != null) {
            Stack<AVLTreeNode> stack = new Stack<AVLTreeNode>();
            AVLTreeNode current = root;

            while (current != null) {
                stack.add(current);
                current = current.getLeft();
            }

            while (!stack.isEmpty()) {
                current = stack.pop();
                System.out.print(current.getData() + " ");

                current = current.getRight();

                while (current != null) {
                    stack.add(current);
                    current = current.getLeft();
                }
            }
        }
    }

3)后序遍历

递归

//递归遍历 后序
    public void postTraversal(AVLTreeNode node){
        if(node == null){
            return;
        }else{
            postTraversal(node.getLeft());
            postTraversal(node.getRight());
            System.out.print(node.getData() + " ");
        }
    }

非递归

/*
     * 非递归后序遍历
     */
    public void postTraversal () {
        if (root != null) {
            Stack<AVLTreeNode> stack = new Stack<AVLTreeNode>();

            AVLTreeNode current = root;
            AVLTreeNode preNode = null;

            while (current != null) {
                stack.add(current);
                current = current.getLeft();
            }

            while (!stack.isEmpty()) {
                current = stack.pop();

                if (current.getRight() == null || current.getRight() == preNode) {
                    System.out.print(current.getData() + " ");
                    preNode = current;
                } else {
                    stack.add(current);

                    current = current.getRight();
                    while (current != null) {
                        stack.add(current);
                        current = current.getLeft();
                    }
                }
            }
        }
    }

3、层级遍历

//层级遍历
    public void levelTraversal(AVLTreeNode root){
        Queue<AVLTreeNode> queue = new LinkedList<>();
        if(root != null){
            queue.offer(root);
            while(!queue.isEmpty()){
                AVLTreeNode node = queue.poll();
                System.out.print(node.getData() + " ");
                AVLTreeNode left = node.getLeft();
                if(left != null){
                    queue.offer(left);
                }
                AVLTreeNode right = node.getRight();
                if(right != null){
                    queue.offer(right);
                }
            }
        }
    }

4、获取二叉树节点数

/**
     * 获取二叉树节点数
     * @param root
     * @return
     */
    public static int binaryTreeNodeSize(AVLTreeNode root){
        if(root == null){
            return 0;
        }
        return binaryTreeNodeSize(root.getLeft()) + binaryTreeNodeSize(root.getRight()) + 1;
    }

5、获取叶子节点数

public static int binaryTreeLeafSize(AVLTreeNode root){
        if(root == null){
            return 0;
        }
        if(root.getLeft() == null && root.getRight() == null){
            return 1;
        }
        return binaryTreeLeafSize(root.getLeft()) + binaryTreeLeafSize(root.getRight());
    }

6、获取第k层的节点数

/**
     * 获取第k层的节点数
     * @param root
     * @param k
     * @return
     */
    public static int nodeSizeLeaveK(AVLTreeNode root, int k){
        if(root == null){
            return 0;
        }
        if(k == 1){
            return 1;
        }
        return nodeSizeLeaveK(root.getLeft(), k -1) + nodeSizeLeaveK(root.getRight(), k - 1);
    }

参考地址:

数据结构--二叉树--详解_清欢有道的博客-CSDN博客_二叉树

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-04-01 23:38:43  更:2022-04-01 23:42:38 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 9:46:31-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码