-
Notifications
You must be signed in to change notification settings - Fork 0
/
111-二叉树的最小深度.java
57 lines (48 loc) · 1.44 KB
/
111-二叉树的最小深度.java
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import java.util.LinkedList;
import java.util.Queue;
// 给定一个二叉树,找出其最小深度。
// 最小深度是从根节点到最近叶子节点的最短路径上的节点数量。
// 说明: 叶子节点是指没有子节点的节点。
// 示例:
// 给定二叉树 [3,9,20,null,null,15,7],
// 3
// / \
// 9 20
// / \
// 15 7
// 返回它的最小深度 2.
//
// Definition for a binary tree node.
// public class TreeNode {
// int val;
// TreeNode left;
// TreeNode right;
// TreeNode(int x) { val = x; }
// }
class Solution { // BFS 最快
public int minDepth(TreeNode root) {
if (root == null) {
return 0;
}
var depth = 1;
Queue<TreeNode> queue = new LinkedList<>();
queue.offer(root);
while (!queue.isEmpty()) {
var len = queue.size();
for (int i = 0; i < len; i++) {
var cur = queue.poll();
if (cur.left == null && cur.right == null) {
return depth; // 发现叶子节点,立刻返回深度
}
if (cur.left != null) {
queue.offer(cur.left);
}
if (cur.right != null) {
queue.offer(cur.right);
}
}
depth++; // 搜索完每一层都要更新深度
}
return depth; // 其实永远都不会运行到这
}
}