【leetcode100-037】【二叉树/dfs/bfs】二叉树的最大深度

发布时间:2024年01月17日

【题干】

给定一个二叉树?root?,返回其最大深度。

二叉树的?最大深度?是指从根节点到最远叶子节点的最长路径上的节点数。

【思路】

还是二叉树经典题,今天写两个解法。

  1. dfs递归:对任意节点,其树高=左右子树中更高的那个树高+1
  2. bfs:每轮循环把当前层所有节点都拿出来并把他们的孩子入队,层计数+1

【题解】

dfs

class Solution {
public:
    int maxDepth(TreeNode* root) {
        if (root==nullptr){
            return 0;
        }
        return max(maxDepth(root->left),maxDepth(root->right))+1;
    }
};

bfs

class Solution {
public:
    int maxDepth(TreeNode* root) {
        if (root == nullptr)
            return 0;
        queue<TreeNode*> q;
        q.push(root);
        int ans = 0;
        while (!q.empty()) {
            //把当前层拿出来扩展一遍
            int cnt = q.size();
            while (cnt) {
                TreeNode* cur = q.front();
                q.pop();
                if (cur->left!=nullptr)
                    q.push(cur->left);
                if (cur->right!=nullptr)
                    q.push(cur->right);
                cnt--;
            }
            //计数
            ans++;
        }
        return ans;
    }
};

文章来源:https://blog.csdn.net/weixin_63059689/article/details/135656605
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。