Given a binary tree, find its minimum depth.
The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Definition for a binary tree node. | |
* struct TreeNode { | |
* int val; | |
* TreeNode *left; | |
* TreeNode *right; | |
* TreeNode(int x) : val(x), left(NULL), right(NULL) {} | |
* }; | |
*/ | |
class Solution { | |
public: | |
int minDepth(TreeNode* node) { | |
if(node==NULL) | |
return 0; | |
if(node->left==NULL&&node->right==NULL) | |
return 1; | |
if(node->left==NULL) | |
return minDepth(node->right)+1; | |
if(node->right==NULL) | |
return minDepth(node->left)+1; | |
if(node->left!=NULL&&node->right!=NULL) | |
return min(minDepth(node->left), minDepth(node->right))+1; | |
} | |
}; |
No comments:
Post a Comment