Minimum Depth of Binary Tree
Input: root = [3,9,20,null,null,15,7]
Output: 2
Input: root = [2,null,3,null,4,null,5,null,6]
Output: 5Solutions
π§ Cpp
Last updated
Input: root = [3,9,20,null,null,15,7]
Output: 2
Input: root = [2,null,3,null,4,null,5,null,6]
Output: 5Last updated
/**
* Definition for a binary tree node.
* struct TreeNode
* {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution
{
public:
//O(2^n) solution
int minDepth(TreeNode* root)
{
if(!root)
return 0;
//if both leafs are null, we have the last leaf
else if(!root->left && !root->right)
return 1;
//pre-order traversal
return 1 + std::min(minDepth(root->left), minDepth(root->right),
[](int a , int b)
{
if(!a) return false;
if(!b) return true;
return a < b;
});
}
};