leetcode 二叉树的最小深度
给定一个二叉树,找出其最小深度。
最小深度是从根节点到最近叶子节点的最短路径上的节点数量。
说明:叶子节点是指没有子节点的节点。
示例 1:
输入:root = [3,9,20,null,null,15,7]
输出:2
示例 2:
输入:root = [2,null,3,null,4,null,5,null,6]
输出:5
解题思路
- 如果当前节点为null, 返回0
- 判断左节点的最小路径,和右节点的最小路径,然后取最小值,即为当前节点的最小深度
- 递归思想,从下到上,依次累加最小路径值,得到的值即为最小路径
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode() {}
* TreeNode(int val) { this.val = val; }
* TreeNode(int val, TreeNode left, TreeNode right) {
* this.val = val;
* this.left = left;
* this.right = right;
* }
* }
*/
class Solution {
public int minDepth(TreeNode root) {
int depth = 0;
if (root == null) {
return depth;
}
depth += 1;
if (root.left == null && root.right == null) {
return depth;
}
if (root.left == null) {
return depth + minDepth(root.right);
}
if (root.right == null) {
return depth + minDepth(root.left);
}
int leftDepth = depth + minDepth(root.left);
int rightDepth = depth + minDepth(root.right);
return leftDepth > rightDepth ? rightDepth : leftDepth;
}
}
本文作者:明月照江江的技术博客
本文链接:https://www.cnblogs.com/gradyblog/p/17708199.html
版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步