-
Notifications
You must be signed in to change notification settings - Fork 0
/
530. Minimum Absolute Difference in BST.cpp
58 lines (55 loc) · 1.45 KB
/
530. Minimum Absolute Difference in BST.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* 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:
int getMinimumDifference(TreeNode* root)
{
TreeNode* curr = root;
vector<int> nodes;
while(curr!=NULL)
{
if(curr->left!=NULL)
{
TreeNode* pred = curr->left;
while(pred->right!=NULL && pred->right!=curr)
{
pred = pred->right;
}
if(pred->right==NULL)
{
pred->right=curr;
curr = curr->left;
}
else
{
pred->right=NULL;
nodes.push_back(curr->val);
curr = curr->right;
}
}
else
{
nodes.push_back(curr->val);
curr = curr->right;
}
}
int min = INT_MAX;
for(int i = 1;i<nodes.size();i++)
{
if(nodes[i]-nodes[i-1]<min)
{
min = nodes[i]-nodes[i-1];
}
}
return min;
}
};