Java [Leetcode 111]Minimum Depth of Binary Tree

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java [Leetcode 111]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.

解题思路:

递归。

代码描述:

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public int minDepth(TreeNode root) {
        if(root == null) return 0;
        if(root.left == null) return 1 + minDepth(root.right);
        if(root.right == null) return 1 + minDepth(root.left);
        return Math.min(1 + minDepth(root.left), 1 + minDepth(root.right));
    }
}

  

以上是关于Java [Leetcode 111]Minimum Depth of Binary Tree的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode Java刷题笔记—111. 二叉树的最小深度

[LeetCode] 111. Minimum Depth of Binary Tree Java

LeetCode Java刷题笔记— 111. 二叉树的最小深度

LeetCode Java刷题笔记— 111. 二叉树的最小深度

LeetCode-111. 二叉树的最小深度(java)

LeetCode111二叉树的最小深度