基础知识

二叉树的多种遍历方式,每种遍历方式各有其特点

LeetCode 104.二叉树的最大深度

分析1.0

往下遍历深度++,往上回溯深度--

  1. class Solution {
  2. int deep = 0, max = 0;
  3. public int maxDepth(TreeNode root) {
  4. preOrder(root);
  5. return max;
  6. }
  7. void preOrder(TreeNode p){
  8. if(p == null){
  9. return;
  10. }
  11. deep++;
  12. max = Math.max(deep, max);
  13. preOrder(p.left);
  14. preOrder(p.right);
  15. deep--;
  16. }
  17. }

分析2.0

这个思路值得背诵

  1. class solution {
  2. /**
  3. * 递归法
  4. */
  5. public int maxDepth(TreeNode root) {
  6. if (root == null) {
  7. return 0;
  8. }
  9. int leftDepth = maxDepth(root.left);
  10. int rightDepth = maxDepth(root.right);
  11. return Math.max(leftDepth, rightDepth) + 1;
  12. }
  13. }

LeetCode 111.二叉树的最小深度

分析1.0

同最大深度一样的考虑,每次求最小值,最小值只能在叶节点取得

  1. class Solution {
  2. int deep = 0, min = 100001;
  3. public int minDepth(TreeNode root) {
  4. if(root == null){
  5. return 0;
  6. }
  7. preOrder(root);
  8. return min;
  9. }
  10. void preOrder(TreeNode p){
  11. if(p == null){
  12. return;
  13. }
  14. deep++;
  15. if(p.left == null && p.right == null){
  16. min = Math.min(deep, min);
  17. }
  18. preOrder(p.left);
  19. preOrder(p.right);
  20. deep--;
  21. }
  22. }

求最小值结果变量要初始化为数据集的最大值,求最大值要初始化为数据集的最小值

分析2.0

  1. class Solution {
  2. /**
  3. * 递归法,相比求MaxDepth要复杂点
  4. * 因为最小深度是从根节点到最近**叶子节点**的最短路径上的节点数量
  5. */
  6. public int minDepth(TreeNode root) {
  7. if (root == null) {
  8. return 0;
  9. }
  10. int leftDepth = minDepth(root.left);
  11. int rightDepth = minDepth(root.right);
  12. if (root.left == null) {
  13. return rightDepth + 1;
  14. }
  15. if (root.right == null) {
  16. return leftDepth + 1;
  17. }
  18. // 左右结点都不为null
  19. return Math.min(leftDepth, rightDepth) + 1;
  20. }
  21. }

LeetCode 222.完全二叉树的节点个数

分析1.0

完全二叉树求节点个数,知道层数+最后一层节点数即可

目前只知道根节点,遍历一下O(n)得出结论,但是要好于O(n),考虑完全二叉树特点 ?

空节点都在最后一层的右边,从根节点一直访问右孩子,知道访问到叶子节点,这时可能访问到最后一层或倒数第二层

失误

分析2.0

  1. class Solution {
  2. /**
  3. * 针对完全二叉树的解法
  4. *
  5. * 满二叉树的结点数为:2^depth - 1
  6. */
  7. public int countNodes(TreeNode root) {
  8. if (root == null) return 0;
  9. TreeNode left = root.left;
  10. TreeNode right = root.right;
  11. int leftDepth = 0, rightDepth = 0; // 这里初始为0是有目的的,为了下面求指数方便
  12. while (left != null) { // 求左子树深度
  13. left = left.left;
  14. leftDepth++;
  15. }
  16. while (right != null) { // 求右子树深度
  17. right = right.right;
  18. rightDepth++;
  19. }
  20. if (leftDepth == rightDepth) {
  21. return (2 << leftDepth) - 1; // 注意(2<<1) 相当于2^2,所以leftDepth初始为0
  22. }
  23. return countNodes(root.left) + countNodes(root.right) + 1;
  24. }
  25. }

分析3.0

普通二叉树

  1. class Solution {
  2. // 通用递归解法
  3. public int countNodes(TreeNode root) {
  4. if(root == null) {
  5. return 0;
  6. }
  7. return countNodes(root.left) + countNodes(root.right) + 1;
  8. }
  9. }

总结

  1. 使用前序求的就是深度,使用后序求的是高度
  2. 求最小值结果变量要初始化为数据集的最大值,求最大值要初始化为数据集的最小值
  3. 二叉树有一个很好的结构特点,某个操作可以平等地施加于所有节点,这样递归就特别方便,要求什么先求它的孩子
  4. 判断一颗完全二叉树是不是满二叉树向左右两边遍历

常用变量名增量更新

size、val、ans、cnt、cur、pre、next、left、right、index、gap、tar、res、src、len、start、end、flag、ch

代码随想录算法训练营day16 | leetcode ● 104.二叉树的最大深度 559.n叉树的最大深度 ● 111.二叉树的最小深度 ● 222.完全二叉树的节点个数的更多相关文章

  1. Java实现 LeetCode 222 完全二叉树的节点个数

    222. 完全二叉树的节点个数 给出一个完全二叉树,求出该树的节点个数. 说明: 完全二叉树的定义如下:在完全二叉树中,除了最底层节点可能没填满外,其余每层节点数都达到最大值,并且最下面一层的节点都集 ...

  2. Leetcode 222.完全二叉树的节点个数

    完全二叉树的节点个数 给出一个完全二叉树,求出该树的节点个数. 说明: 完全二叉树的定义如下:在完全二叉树中,除了最底层节点可能没填满外,其余每层节点数都达到最大值,并且最下面一层的节点都集中在该层最 ...

  3. LeetCode 222. 完全二叉树的节点个数(Count Complete Tree Nodes)

    题目描述 给出一个完全二叉树,求出该树的节点个数. 说明: 完全二叉树的定义如下:在完全二叉树中,除了最底层节点可能没填满外,其余每层节点数都达到最大值,并且最下面一层的节点都集中在该层最左边的若干位 ...

  4. LeetCode 222.完全二叉树的节点个数(C++)

    给出一个完全二叉树,求出该树的节点个数. 说明: 完全二叉树的定义如下:在完全二叉树中,除了最底层节点可能没填满外,其余每层节点数都达到最大值,并且最下面一层的节点都集中在该层最左边的若干位置.若最底 ...

  5. Leetcode之深度优先搜索(DFS)专题-559. N叉树的最大深度(Maximum Depth of N-ary Tree)

    Leetcode之深度优先搜索(DFS)专题-559. N叉树的最大深度(Maximum Depth of N-ary Tree) 深度优先搜索的解题详细介绍,点击 给定一个 N 叉树,找到其最大深度 ...

  6. Leetcode:559. N叉树的最大深度

    Leetcode:559. N叉树的最大深度 Leetcode:559. N叉树的最大深度 Talk is cheap . Show me the code . /* // Definition fo ...

  7. [LeetCode] Count Complete Tree Nodes 求完全二叉树的节点个数

    Given a complete binary tree, count the number of nodes. Definition of a complete binary tree from W ...

  8. [LeetCode] Maximum Depth of N-ary Tree N叉树的最大深度

    Given a n-ary tree, find its maximum depth. The maximum depth is the number of nodes along the longe ...

  9. [LeetCode] 222. Count Complete Tree Nodes 求完全二叉树的节点个数

    Given a complete binary tree, count the number of nodes. Note: Definition of a complete binary tree ...

  10. Leetcode 222:完全二叉树的节点个数

    题目 给出一个完全二叉树,求出该树的节点个数. 说明: 完全二叉树的定义如下:在完全二叉树中,除了最底层节点可能没填满外,其余每层节点数都达到最大值,并且最下面一层的节点都集中在该层最左边的若干位置. ...

随机推荐

  1. 设计链表-LeetCode707 基础题

    LeetCode链接:https://leetcode.cn/problems/design-linked-list/ 题目:设计链表的实现.您可以选择使用单链表或双链表.单链表中的节点应该具有两个属 ...

  2. 【小项目】微信定时推送天气预报Github项目使用及原理介绍-包含cron、天气预报、常用api

    一.资料链接 1.github地址 https://github.com/qq1534774766/wx-push 2.教程地址 https://blog.csdn.net/qq15347747/ar ...

  3. 【每日一题】【集合增删】2022年1月13日-NC41 最长无重复子数组-220113/220122

    描述 给定一个长度为n的数组arr,返回arr的最长无重复元素子数组的长度,无重复指的是所有数字都不相同. 子数组是连续的,比如[1,3,5,7,9]的子数组有[1,3],[3,5,7]等等,但是[1 ...

  4. Blazor 部署 pdf.js 不能正确显示中文资源解决办法

    在Blazor项目嵌入 pdf.js 时不能正确显示中文,浏览器F12显示如下错误 错误 l10n.js /web/locale/locale.properties not found. 我找到了解决 ...

  5. 大数据-业务数据采集-FlinkCDC

    CDC CDC 是 Change Data Capture(变更数据获取)的简称.核心思想是,监测并捕获数据库的变动(包括数据或数据表的插入.更新以及删除等),将这些变更按发生的顺序完整记录下来,写入 ...

  6. Python开发Brup插件检测SSRF漏洞和URL跳转

    作者:馒头,博客地址:https://www.cnblogs.com/mantou0/ 出身: 作为一名安全人员,工具的使用是必不可少的,有时候开发一些自己用的小工具在渗透时能事半功倍.在平常的渗透测 ...

  7. linux安装Erlang和Rabbitmq以及安装问题解决

    安装环境: Alibaba Cloud Linux 安装erlang命令: rpm --import https://packages.erlang-solutions.com/rpm/erlang_ ...

  8. 下载Font Awesome框架

    目录 一:下载Font Awesome框架 二:如何使用font awesome 1.使用图标等样式,点击复制标签即可,需要嵌套在i标签内 2.点击图标,复制标签,然后粘贴使用即可. 3.动态图片等 ...

  9. 如何使用Abstract类?抽象类的威力

    简介: 今天我想谈谈如何使用抽象类,以及抽象类真正的威力.本文将结合具体业务来说明如何使用抽象类. 业务简述: 本人目前只接触过PMS(物业管理系统),公司主要业务的是美国的租房业务.由于美国租房和中 ...

  10. 【Spring专题】「开发指南」夯实实战基础功底之解读logback-spring.xml文件的详解实现

    logback的maven配置 <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j- ...