Skip to content

Commit 7713fb1

Browse files
authored
Merge pull request #321 from Stackingrule/dev
feat:add Solution.cpp for 0111. Minimum Depth of Binary Tree
2 parents 1ef234b + 028990b commit 7713fb1

File tree

1 file changed

+9
-0
lines changed
  • solution/0100-0199/0111.Minimum Depth of Binary Tree

1 file changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
class Solution {
2+
public:
3+
int minDepth(TreeNode* root) {
4+
if (!root) return 0;
5+
if (!root->left) return 1 + minDepth(root->right);
6+
if (!root->right) return 1 + minDepth(root->left);
7+
return 1 + min(minDepth(root->left), minDepth(root->right));
8+
}
9+
};

0 commit comments

Comments
 (0)