leetcode【每日一题】111. 二叉树的最小深度 Java

题干

给定一个二叉树,找出其最小深度。

最小深度是从根节点到最近叶子节点的最短路径上的节点数量。

说明: 叶子节点是指没有子节点的节点。

示例:

给定二叉树 [3,9,20,null,null,15,7],

    3
   / \
  9  20
    /  \
   15   7

返回它的最小深度 2.

想法

简单题
递归完事儿
注意对每个节点而言最短的是左右子树里最小的即可

Java代码

package daily;

public class MinDepth {
    public int minDepth(TreeNode root) {
        if(root==null){
            return 0;
        }
        if(root.right==null&&root.left==null){
            return  1;
        }
        int mindepth=Integer.MAX_VALUE;
        if(root.left!=null){
            mindepth=Math.min(mindepth,minDepth(root.left));
        }
        if(root.right!=null){
            mindepth=Math.min(mindepth,minDepth(root.right));
        }
        return  mindepth+1;

    }
}

我的leetcode代码都已经上传到我的githttps://github.com/ragezor/leetcode

猜你喜欢

转载自blog.csdn.net/qq_43491066/article/details/108141613