LeetCode基础--二叉树-求最小高度

题目描述:
求二叉树的最小高度.

实现:

public class Solution {
    public int MinDepth(TreeNode root) {
        if (root == null) 
        {
            return 0;
        }
        int L = MinDepth(root.left);
        int R = MinDepth(root.right);
        return (L == 0 || R == 0) ? (L+R+1) : Math.Min(L,R) + 1;
    }
}

你可能感兴趣的:(LeetCode)