-
Notifications
You must be signed in to change notification settings - Fork 0
/
validate_binary_search_tree.cpp
49 lines (45 loc) · 1.19 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
/**
* 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:
bool isValidBST(TreeNode* root) {
if(root == NULL)
return true;
vector<TreeNode *> stack;
TreeNode *current=root;
int top=-1;
TreeNode *prev=NULL;
while(current!=NULL)
{
stack.push_back(current);
top++;
if(current->left==NULL)
{
while(top>=0)
{
current = stack[top];
top--;
stack.pop_back();
if(prev!=NULL && (prev!=current && current->val <= prev->val))
return false;
prev=current;
if(current->right != NULL)
{
break;
}
}
current=current->right;
continue;
}
current=current->left;
}
return true;
}
};