十七
十七
Published on 2022-03-05 / 158 Visits
0
0

leetcode104. 二叉树的最大深度

leetcode104. 二叉树的最大深度

class Solution {
public:
    int maxDepth(TreeNode* root) {
        if(root==nullptr)return 0;
        return  max(maxDepth(root->left),maxDepth(root->right))+1;
    }
};

Comment