// Recursion
void helper(TreeNode* root, int cur, int& res) {
if (!root) return;
++cur;
if (!root->left && !root->right) { // only update when the node is leaf
res = min(res, cur);
}
helper(root->left, cur, res);
helper(root->right, cur, res);
}
int minDepth(TreeNode* root) { // time: O(n); space: O(n)
int res = 1e8, cur = 0;
helper(root, cur, res);
return res == 1e8 ? 0 : res;
}
// Iteration (Level Order Traversal)
int minDepth(TreeNode* root) { // time: O(n); space: O(n)
if (!root) return 0;
queue<TreeNode*> q;
q.push(root);
int res = 0;
while (!q.empty()) {
++res;
int n = q.size();
for (int i = 0; i < n; ++i) {
TreeNode* cur = q.front(); q.pop();
if (!cur->left && !cur->right) return res;
if (cur->left) q.push(cur->left);
if (cur->right) q.push(cur->right);
}
}
return -1;
}