码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-07-26 19:03:29      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:ret   二叉树   code   null   val   -o   ref   dep   tree node   

代码

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    int minDepth(TreeNode* root) {
        if (!root) return 0;
        if (!root->left && !root->right) return 1;
        if (root->left && root->right) return min(minDepth(root->left), minDepth(root->right)) + 1;
        if (root->left) return minDepth(root->left) + 1;
        return minDepth(root->right) + 1;
    }
};

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

标签:ret   二叉树   code   null   val   -o   ref   dep   tree node   

原文地址:https://www.cnblogs.com/clown9804/p/13380272.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!