【LeetCode】 111. Minimum Depth of Binary Tree 二叉树的最小深度(Easy)(JAVA)

【LeetCode】 111. Minimum Depth of Binary Tree 二叉树的最小深度(Easy)(JAVA)

题目地址: https://leetcode.com/problems/minimum-depth-of-binary-tree/

题目描述:

Given a binary tree, find its minimum depth.

The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.

Note: A leaf is a node with no children.

Example:

Given binary tree [3,9,20,null,null,15,7],

    3
   / \
  9  20
    /  \
   15   7

return its minimum depth = 2.

题目大意

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

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

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

解题方法

1、采用递归,找出左右子树最短的即可
2、注意最小深度指的是道叶子节点,叶子节点需要没有子节点,所有碰到只有左节点或者只有右节点的,单独判断走一边判断即可

扫描二维码关注公众号,回复: 12006985 查看本文章
/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public int minDepth(TreeNode root) {
        if (root == null) return 0;
        if (root.left == null) return minDepth(root.right) + 1;
        if (root.right == null) return minDepth(root.left) + 1;
        return Math.min(minDepth(root.left), minDepth(root.right)) + 1;
    }
}

执行用时 : 0 ms, 在所有 Java 提交中击败了 100.00% 的用户
内存消耗 : 39.8 MB, 在所有 Java 提交中击败了 5.13% 的用户

猜你喜欢

转载自blog.csdn.net/qq_16927853/article/details/105980697