欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

leetcode-cpp 111.二叉树的最小深度

程序员文章站 2022-04-17 13:24:50
...

111.二叉树的最小深度

  • 题目:

leetcode-cpp 111.二叉树的最小深度

  • 链接

    leetcode

  • solution:

    跟求最大深度一样 反过来而已

  • code


class Solution {
public:
    int minDepth(TreeNode* root) {
        if(!root) return 0;
        int left=minDepth(root->left);
        int right=minDepth(root->right);
        return (left&&right)?1+min(left,right):1+left+right;//三目运算符 这个真的帅
    }
};