111 Minimum Depth of Binary Tree
111. Minimum Depth of Binary Tree
1. Question
2. Implementation
class Solution {
public int minDepth(TreeNode root) {
if (root == null) return 0;
if (root.left == null) return 1 + minDepth(root.right);
if (root.right == null) return 1 + minDepth(root.left);
return Math.min(minDepth(root.left), minDepth(root.right)) + 1;
}
}class Solution {
public int minDepth(TreeNode root) {
if (root == null) {
return 0;
}
Queue<TreeNode> queue = new LinkedList<>();
queue.add(root);
int depth = 0;
while (!queue.isEmpty()) {
int size = queue.size();
++depth;
for (int i = 0; i < size; i++) {
TreeNode curNode = queue.remove();
if (curNode.left == null && curNode.right == null) {
return depth;
}
if (curNode.left != null) {
queue.add(curNode.left);
}
if (curNode.right != null) {
queue.add(curNode.right);
}
}
}
return depth;
}
}3. Time & Space Complexity
Last updated