97.二叉树的最大深度

Posted narjaja

tags:

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

转自[LeetCode] Maximum Depth of Binary Tree 二叉树的最大深度
技术分享图片

/**
 * Definition of TreeNode:
 * class TreeNode {
 * public:
 *     int val;
 *     TreeNode *left, *right;
 *     TreeNode(int val) {
 *         this->val = val;
 *         this->left = this->right = NULL;
 *     }
 * }
 */

class Solution {
public:
    /**
     * @param root: The root of binary tree.
     * @return: An integer
     */
    int maxDepth(TreeNode * root) {
        if (!root) return 0;
        return 1 + max(maxDepth(root->left), maxDepth(root->right));
    }
};

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

97.二叉树的最大深度

代码随想录算法训练营第16天 | ● 104.二叉树的最大深度 559.n叉树的最大深度 ● 111.二叉树的最小深度 ● 222.完全二叉树的节点个数

代码题— 二叉树的深度

二叉树--二叉树的最大深度

104. 二叉树的最大深度

二叉树的最大深度 递归