-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathValidate_Binary_Search_Tree.cpp
66 lines (61 loc) · 1.76 KB
/
Validate_Binary_Search_Tree.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
59
60
61
62
63
64
65
66
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
/*
// With extra space (AC)
class Solution {
void isValidBSTRecur(TreeNode* root, vector<int>& inorder) {
if(!root) return;
isValidBSTRecur(root->left, inorder);
inorder.push_back(root->val);
isValidBSTRecur(root->right, inorder);
}
public:
bool isValidBST(TreeNode* root) {
vector<int> inorder;
isValidBSTRecur(root, inorder);
for(int i = 1; i < (int)inorder.size(); ++i) {
if(inorder[i] <= inorder[i - 1]) return false;
}
return true;
}
};
*/
/* AC
class Solution {
public:
void isValidBSTUtils(TreeNode *root, int &prev, bool &result) {
if(!root or !result) return;
isValidBSTUtils(root->left, prev, result);
if(prev >= root->val) {
result = false;
return;
}
prev = root->val;
isValidBSTUtils(root->right, prev, result);
}
bool isValidBST(TreeNode *root) {
bool result = true;
int prev = numeric_limits<int>::min();
isValidBSTUtils(root, prev, result);
return result;
}
};
*/
class Solution {
bool isValidBSTRecur(TreeNode* root, long min, long max) {
if(!root) return true;
if(!(root->val > min && root->val < max)) return false;
return (isValidBSTRecur(root->left, min, root->val) && isValidBSTRecur(root->right, root->val, max));
}
public:
bool isValidBST(TreeNode* root) {
return isValidBSTRecur(root, numeric_limits<long>::min(), numeric_limits<long>::max());
}
};