力扣104. 二叉树的最大深度

作者 : admin 本文共890个字,预计阅读时间需要3分钟 发布时间: 2024-06-6 共1人阅读

给定一个二叉树 root ,返回其最大深度。二叉树的 最大深度 是指从根节点到最远叶子节点的最长路径上的节点数。

示例 1:

力扣104. 二叉树的最大深度插图

输入:root = [3,9,20,null,null,15,7]  输出:3

我的解法:
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
 *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
 * };
 */
class Solution {
public:
    int dfs(TreeNode* root,int depth){
    if(!root){return depth;}//无根节点
    if(!root->left&&!root->right){return depth+1;}//只有根节点
    if(!root->left){return dfs(root->right,depth+1);}//只有右孩子
    if(!root->right){return dfs(root->left,depth+1);}//只有左孩子
    return max(dfs(root->left,depth+1),dfs(root->right,depth+1));//有两个孩子
}

    int maxDepth(TreeNode* root) {
        return dfs(root,0);
    }
};
State-of-the-art solutions:
class Solution {
public:
    int maxDepth(TreeNode* root) {
        if (root == nullptr) return 0;
        return max(maxDepth(root->left), maxDepth(root->right)) + 1;
    }
};
本站无任何商业行为
个人在线分享 » 力扣104. 二叉树的最大深度
E-->