码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-07-28 00:10:31      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:res   max   null   ptr   ini   public   nod   ++   class   

/**
 * 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;
    }
};

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

标签:res   max   null   ptr   ini   public   nod   ++   class   

原文地址:https://www.cnblogs.com/theodoric008/p/9380188.html

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