104. 二叉树的最大深度

题目

题解

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

你可能感兴趣的:(算法,leetcode,算法,职场和发展)