c_cpp 104.二叉树的最大深度 - 难度易 - 2018.9.10

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 104.二叉树的最大深度 - 难度易 - 2018.9.10相关的知识,希望对你有一定的参考价值。

/**
 * 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 depper(TreeNode *r, int curMax) {
        if (r == NULL) return curMax;
        return max(depper(r->left, curMax+1), depper(r->right, curMax+1));
    }
    int maxDepth(TreeNode* root) {
        return depper(root, 0);
    }
};

以上是关于c_cpp 104.二叉树的最大深度 - 难度易 - 2018.9.10的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode刷题100天—104. 二叉树的最大深度(二叉树)—day08

LeetCode Java刷题笔记—104. 二叉树的最大深度

104111. 二叉树的最大(小)深度

二叉树的深度——答案

[LeetCode] 104. 二叉树的最大深度

LeetCode(104):二叉树的最大深度