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;
}
}