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 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 【力扣刷题】Day16——二叉树专题 -> 正文阅读

[数据结构与算法]【力扣刷题】Day16——二叉树专题


上一篇文章:【力扣刷题】Day15——二叉树专题_塔塔开!!!的博客-CSDN博客

6. 二叉树的最大深度

题目链接:104. - 力扣(LeetCode)

思路:dfs,前序遍历统计最大深度即可

static遇到的坑!!!

Code

 /**
    dfs:前序遍历求二叉树的最大深度
  */
class Solution {
    int res = -0x3f3f3f3f;
    public int maxDepth(TreeNode root) {
        if(root == null){
            return 0;
        }
        dfs(root, 0);
        return res;
    }
    public void dfs(TreeNode root, int depth){
        if(root == null){
            return ;
        }
        depth ++;
        res = Math.max(res, depth);
        dfs(root.left, depth);
        dfs(root.right, depth);
    }
}

8. 二叉树的最小深度

题目链接:111. 二叉树的最小深度 - 力扣(LeetCode)

二叉树的最小深度:当这个节点的左右儿子都为空时此时的深度才加入最小深度的比较计算!

思路:计算出所有满足条件的深度(左右儿子的深度)—— 当只有左右儿子都为空时才算的是能比较的深度,比较取最小即可(左子树的最小深度和右子树的最小深度比较)

Code

class Solution {
    int res = 0x3f3f3f3f;
    public int minDepth(TreeNode root) {
       if(root == null){
           return 0;
       }
        dfs(root, 0);
        return res;
    }
    public void dfs(TreeNode root, int depth){
        if(root == null){// 递归出口
            return ;
        }
        depth ++;
        if(root.left == null && root.right == null){
            res = Math.min(res, depth);
        }
        dfs(root.left,  depth);
        dfs(root.right,  depth);
    }
}

7. N 叉树的最大深度

题目链接:559. N 叉树的最大深度 - 力扣(LeetCode)

二叉树的最大深度扩展到N叉树,思路是一样的递归到最后一个节点然后比较,不同的是上一题是只有两棵子树,为此我们求出所有子树的最大深度然后比较即可。

Code

class Solution {
    int res = -0x3f3f3f3f;
    public int maxDepth(Node root) {
        if(root == null){
            return 0;
        }
        dfs(root, 0);
        return res;
    }
    public void dfs(Node root, int depth){
        if(root == null){
            return ;
        }
        // 遍历所有子树 求子树的最大深度(之前我们是只遍历左右子树)
        depth ++;
        res = Math.max(res, cnt);
        List<Node> C = root.children;
        for(Node child : C){
            dfs(child, cnt );
        }
    }
}

9. 完全二叉树的节点个数

题目链接:222. 完全二叉树的节点个数 - 力扣(LeetCode)222. 完全二叉树的节点个数 - 力扣(LeetCode)

解法一:BFS层序遍历统计节点数

Code

 // 思路一:直接BFS拿到所有节点
class Solution {
    public int countNodes(TreeNode root) {
        if(root == null){
            return 0;
        }
        return bfs(root);
    }
    public int bfs(TreeNode root){
        List<TreeNode> list = new ArrayList<>();
        Queue<TreeNode> q = new LinkedList<>();
        q.add(root);
        while(!q.isEmpty()){
            int len = q.size();
            for(int i = 0; i < len; i ++){
                TreeNode t = q.poll();
                list.add(t);
                if(t.left != null){
                    q.add(t.left);
                }
                if(t.right != null){
                    q.add(t.right);
                }
            }
        }
        return list.size();
    }
}

解法二:递归求解

求一棵完全二叉树的节点个数,其实就是递归遍历求左子树和右子树的个数,它们两个相加再加上根节点的个数 11,就是完全二叉树的节点数。

class Solution {
    public int countNodes(TreeNode root) {
        return dfs(root);
    }
    /**
        返回一个棵树的所有节点数
     */
    public int dfs(TreeNode root){
        if(root == null){
            return 0;
        }
        return dfs(root.left) + dfs(root.right) + 1;
    }
}

解法三:dfs深度优先搜索统计节点数

// 思路三:直接dfs深度优先搜索统计即可
class Solution {
    int res = 0;// 开的全局变量!!!!!!
    public int countNodes(TreeNode root) {
        if(root == null){
            return 0;
        }
        dfs(root);
        return res;
    }
    public void dfs(TreeNode root){
        if(root == null){
            return ;
        }
        cnt ++;
        dfs(root.left);
        dfs(root.right);
    }
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-10-08 21:07:03  更:2022-10-08 21:09:49 
 
开发: 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/25 19:54:28-

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