LeetCode-Day38 (C#) 111. 二叉树的最小深度

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

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

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

示例 1:

image

输入:root = [3,9,20,null,null,15,7]
输出:2

示例 2:

输入:root = [2,null,3,null,4,null,5,null,6]
输出:5

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     public int val;
 *     public TreeNode left;
 *     public TreeNode right;
 *     public TreeNode(int val=0, TreeNode left=null, TreeNode right=null) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
public class Solution {
    public int MinDepth(TreeNode root) {
        if(root == null) return 0;
        int hLeft = MinDepth(root.left);
        int hRight = MinDepth(root.right);
        if(hLeft > 0 && hRight > 0) return Math.Min(hLeft, hRight) + 1;
        return hLeft + hRight + 1;
    }
}

你可能感兴趣的:(LeetCode-Day38 (C#) 111. 二叉树的最小深度)