-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path671.cpp
35 lines (34 loc) · 785 Bytes
/
671.cpp
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
// recursion-0ms.cpp
/**
* 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 {
int minValue;
int *sec_min;
public:
int findSecondMinimumValue(TreeNode *root) {
if (!root)
return -1;
minValue = root->val;
sec_min = nullptr;
helper(root->left);
helper(root->right);
return sec_min == nullptr ? -1 : *sec_min;
}
void helper(TreeNode *root) {
if (!root)
return;
if (root->val > minValue)
sec_min = sec_min == nullptr
? &root->val
: *sec_min > root->val ? &root->val : sec_min;
helper(root->left);
helper(root->right);
}
};