-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path111.minimum-depth-of-binary-tree.java
74 lines (66 loc) · 1.95 KB
/
111.minimum-depth-of-binary-tree.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import java.util.LinkedList;
import java.util.Queue;
import javax.swing.tree.TreeNode;
/*
* @lc app=leetcode id=111 lang=java
*
* [111] Minimum Depth of Binary Tree
*/
// @lc code=start
/**
* Definition for a binary tree node. public class TreeNode { int val; TreeNode
* left; TreeNode right; TreeNode() {} TreeNode(int val) { this.val = val; }
* TreeNode(int val, TreeNode left, TreeNode right) { this.val = val; this.left
* = left; this.right = right; } }
*/
// class Solution {
// public int minDepth(TreeNode root) {
// // The minimum depth is the number of nodes along the shortest path
// // from the root node down to the nearest leaf node.
// if (root == null)
// return 0;
// if (root.left == null && root.right == null) {
// // leaf node
// return 1;
// } else if (root.left == null && root.right != null) {
// // no left child
// return minDepth(root.right) + 1;
// } else if (root.left != null && root.right == null) {
// // no right child
// return minDepth(root.left) + 1;
// } else {
// return Math.min(minDepth(root.left), minDepth(root.right)) + 1;
// }
// }
// }
class Solution {
public int minDepth(TreeNode root) {
if (root == null)
return 0;
if (root.left == null && root.right == null)
// leaf node
return 1;
Queue<TreeNode> q = new LinkedList<>();
q.add(root);
int depth = 1;
// level order traversal
while (!q.isEmpty()) {
int currLevelSize = q.size();
for (int i = 0; i < currLevelSize; i++) {
TreeNode node = q.poll();
if (node.left == null && node.right == null) {
return depth;
}
if (node.left != null) {
q.add(node.left);
}
if (node.right != null) {
q.add(node.right);
}
}
depth++;
}
return depth;
}
}
// @lc code=end