104. 二叉树的最大深度

104. 二叉树的最大深度


题目链接:104. 二叉树的最大深度

代码如下:

class Solution {
public:
    int maxDepth(TreeNode* root) {
        if(root==nullptr)
            return 0;
        
        int l=maxDepth(root->left);
        int r=maxDepth(root->right);

        return max(l,r)+1;
    }
};

你可能感兴趣的:(leetcode,c++)