阅读背景:

leetcode104 C++ 4ms 二叉树的最大深度

来源:互联网 
/**
 * 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 maxDepth(TreeNode* root) {
        if(root==nullptr){
            return 0;        
        }
        int left = maxDepth(root->left);
        int right = maxDepth(root->right);
        int res = left >= right? left:right;
        return 1 + res;
    }
};/**
 * Definition for a binary tree node.
 * str



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: