Leetcode104.二叉树的最大深度 Maximum Depth of Binary Tree(Java)

Leetcode104.二叉树的最大深度 Maximum Depth of Binary Tree(Java)

给定一个二叉树,找出其最大深度。二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。

说明: 叶子节点是指没有子节点的节点。

二叉树的最大深度

本题可以采用层次遍历BFS,递归DFS

本题采用的递归方式本质上是二叉树的后序遍历

对任何一棵树都有

  • 先求出左右子树的深度,在两深度中取一个最大值max
  • 考虑该子树的根节点还未被计算,正确的最大深度应是max + 1

**时间复杂度:**O(n)

class Solution {
    public int maxDepth(TreeNode root) {
        if (root == null) return 0;
        int maxl = maxDepth(root.left);
        int maxr = maxDepth(root.right);
        int maxd = Math.max(maxl, maxr) + 1;
        return maxd;
    }
}

熟练后可将代码缩短至一行,但应正确理解这是二叉树的后续遍历

class Solution {
    public int maxDepth(TreeNode root) {
        return root != null ? Math.max(maxDepth(root.left) , maxDepth(root.right)) + 1 : 0;
    }
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值