104. 二叉树的最大深度/面试题55 - I. 二叉树的深度(简单)

给定一个二叉树,找出其最大深度。

二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。

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

示例:
给定二叉树 [3,9,20,null,null,15,7],

1
2
3
4
5
3
/ \
9 20
/ \
15 7

返回它的最大深度 3 。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/maximum-depth-of-binary-tree

思路:

这题属于简单题,常规解法用递归最简单,还有用自定义栈实现(DFS)

回看记录20.05.19

添加栈实现

代码1:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public int maxDepth(TreeNode root) {
//递归
if(root == null)
return 0;
int leftMaxDepth = maxDepth(root.left);
int rightMaxDepth = maxDepth(root.right);
return Math.max(leftMaxDepth,rightMaxDepth)+1;
}
}

//一句话解决
class Solution {
public int maxDepth(TreeNode root) {
return root == null ? 0 : Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;
}
}

代码2:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public int maxDepth(TreeNode root) {
if(root==null)
return 0;
int depth = 0;
Stack<Pair<TreeNode,Integer>> stack = new Stack<>();
stack.push(new Pair<>(root,1));
while(!stack.isEmpty()) {
Pair<TreeNode, Integer> node = stack.pop();
TreeNode key = node.getKey();
Integer value = node.getValue();
//
if(key!=null){
depth = Math.max(value, depth);//深度为前面最深和当前最深比较
//先入右的话可以后面先出左
stack.push(new Pair<>(key.right,value+1));
stack.push(new Pair<>(key.left,value+1));

}
}
return depth;
}
}