-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMinimum_Depth_of_Binary_Tree.cpp
More file actions
49 lines (42 loc) · 1.27 KB
/
Minimum_Depth_of_Binary_Tree.cpp
File metadata and controls
49 lines (42 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Source : https://leetcode-cn.com/problems/minimum-depth-of-binary-tree/description/
// Number : 111
// Author : HL
// Date : 2018-09-25
// Kill : 100.00%
/**********************************************************************************
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.
Note: A leaf is a node with no children.
Example:
Given binary tree [3,9,20,null,null,15,7],
3
/ \
9 20
/ \
15 7
return its minimum depth = 2.
**********************************************************************************/
/**
* 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* root) {
if (root == NULL)
return 0;
if (root->left != NULL && root->right != NULL)
return min(minDepth(root->left), minDepth(root->right)) + 1;
else if (root->left != NULL)
return minDepth(root->left) + 1;
else if (root->right != NULL)
return minDepth(root->right) + 1;
else
return 1;
}
};