原题链接:https://leetcode.com/problems/minimum-depth-of-binary-tree/

int minDepth(TreeNode* root) {if (root == NULL) return 0;int left = minDepth(root->left);int right = minDepth(root->right);if (!left || !right) return left + right + 1;return min(left, right) + 1;
}

leetcode算法题--Minimum Depth of Binary Tree相关推荐

  1. LeetCode算法题-Minimum Depth of Binary Tree(Java实现)

    这是悦乐书的第168次更新,第170篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第27题(顺位题号是111).给定二叉树,找到它的最小深度.最小深度是沿从根节点到最近的 ...

  2. LeetCode: 111. Minimum Depth of Binary Tree

    题目 Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced bina ...

  3. LeetCode:Minimum Depth of Binary Tree,Maximum Depth of Binary Tree

    LeetCode:Minimum Depth of Binary Tree Given a binary tree, find its minimum depth. The minimum depth ...

  4. 【LeetCode】Minimum Depth of Binary Tree 二叉树的最小深度 java

    [LeetCode]Minimum Depth of Binary Tree Given a binary tree, find its minimum depth. The minimum dept ...

  5. leetcode - Minimum Depth of Binary Tree

    题目:Minimum Depth of Binary Tree Given a binary tree, find its minimum depth. The minimum depth is th ...

  6. LeetCode刷题记录14——257. Binary Tree Paths(easy)

    LeetCode刷题记录14--257. Binary Tree Paths(easy) 目录 前言 题目 语言 思路 源码 后记 前言 数据结构感觉理论简单,实践起来很困难. 题目 给定一个二叉树, ...

  7. 【LeetCode】104. Maximum Depth of Binary Tree (2 solutions)

    Maximum Depth of Binary Tree  Given a binary tree, find its maximum depth. The maximum depth is the ...

  8. C#LeetCode刷题之#111-二叉树的最小深度​​​​​​​(Minimum Depth of Binary Tree)

    问题 给定一个二叉树,找出其最小深度. 最小深度是从根节点到最近叶子节点的最短路径上的节点数量. 说明: 叶子节点是指没有子节点的节点. 给定二叉树 [3,9,20,null,null,15,7], ...

  9. leetcode python3 简单题111. Minimum Depth of Binary Tree

    1.编辑器 我使用的是win10+vscode+leetcode+python3 环境配置参见我的博客: 链接 2.第一百一十一题 (1)题目 英文: Given a binary tree, fin ...

最新文章

  1. Learn OpenGL (九):基础光照
  2. 使用LaTeX排版如何方便地引用多篇参考文献(不使用插件)
  3. 《科学美国人》:美国应保持太空、网络、生物领域的科技优势
  4. (转)iOS开发资源:推送通知相关开源项目--PushSharp、APNS-PHP以及Pyapns等
  5. ubuntu 修改用户名和计算机名称
  6. 神经网络与深度学习——TensorFlow2.0实战(笔记)(四)(python模块、包和库)
  7. 前端性能优化之Lazyload
  8. 两个sql交集_sql的高级命令运用
  9. python情感词典计算得分_基于情感词典的情感打分
  10. CIKM 2021 | 基于异质图学习的搜索广告关键词推荐模型及实践
  11. WordPress Platinum SEO插件跨站脚本漏洞
  12. BM求线性递推模板(杜教版)
  13. 彻底卸载Android Studio
  14. 【枚举·习题】拉灯游戏or费解的开关
  15. 补遗篇之单行道标志const
  16. mysql分组取最新时间的数据
  17. eap wifi 证书_用openssl为EAP-TLS生成证书(CA证书,服务器证书,用户证书)
  18. 企业物流营销组合模式探讨 (zt)
  19. 课后实践9:以拼多多为例,原型设计
  20. linux 电源管理 Generic PM之Suspend功能

热门文章

  1. 用python写脚本看什么书-终于知晓python编写脚本入门教程
  2. python自学多久可以找到工作-25岁从零开始学习python还能找到工作吗?
  3. python计算1到100的和-Python3基础 sum,range 计算1到100的和
  4. c+和python哪个快-C/C++比python快是什么意思?
  5. python编程有什么用处-python中的生成器是什么?生成器有什么用处?
  6. python3.7.2安装-Centos7.6,安装python3.7.2
  7. python是一门什么课程-为什么说Python是一门伟大的入门语言?丨课程推荐
  8. 零基础自学python看什么书-学习Python可以看书籍学习吗?老男孩Python入门课程
  9. LeetCode Shortest Palindrome(kmp的妙用)
  10. linux下截屏工具