代码拉取完成,页面将自动刷新
/*
* @lc app=leetcode.cn id=111 lang=golang
*
* [111] 二叉树的最小深度
*
* https://leetcode.cn/problems/minimum-depth-of-binary-tree/description/
*
* algorithms
* Easy (51.31%)
* Likes: 877
* Dislikes: 0
* Total Accepted: 483.1K
* Total Submissions: 941.3K
* Testcase Example: '[3,9,20,null,null,15,7]'
*
* 给定一个二叉树,找出其最小深度。
*
* 最小深度是从根节点到最近叶子节点的最短路径上的节点数量。
*
* 说明:叶子节点是指没有子节点的节点。
*
*
*
* 示例 1:
*
*
* 输入:root = [3,9,20,null,null,15,7]
* 输出:2
*
*
* 示例 2:
*
*
* 输入:root = [2,null,3,null,4,null,5,null,6]
* 输出:5
*
*
*
*
* 提示:
*
*
* 树中节点数的范围在 [0, 10^5] 内
* -1000
*
*
*/
// @lc code=start
/**
* Definition for a binary tree node.
* type TreeNode struct {
* Val int
* Left *TreeNode
* Right *TreeNode
* }
*/
func minDepth(root *TreeNode) int {
if root == nil{
return 0
}
if root.Left == nil && root.Right == nil{
return 1
}
minD := math.MaxInt32
if root.Left != nil{
minD = min(minDepth(root.Left), minD)
}
if root.Right != nil{
minD = min(minDepth(root.Right), minD)
}
return minD+1
}
func min(x, y int) int {
if x < y{
return x
}
return y
}
// @lc code=end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。