111. 二叉树的最小深度

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

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

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

/**
 * 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) {
        return getDepth(root);
    }

    public int getDepth(TreeNode root) {
        if( root == null ) return 0;
        if( root.left == null && root.right != null ) {
            return 1 + getDepth(root.right);
        }
        if( root.left != null && root.right == null ) {
            return 1 + getDepth(root.left);
        } 
        return 1 + Math.min( getDepth(root.left), getDepth(root.right) );


    }
}

对于一个子树为空的情况的处理。

你可能感兴趣的:(算法,leetcode,职场和发展)