-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path98.validate-binary-search-tree.cpp
More file actions
58 lines (57 loc) · 1.44 KB
/
98.validate-binary-search-tree.cpp
File metadata and controls
58 lines (57 loc) · 1.44 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
50
51
52
53
54
55
56
57
58
/*
* @lc app=leetcode id=98 lang=cpp
*
* [98] Validate Binary Search Tree
*/
// @lc code=start
/**
* 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:
bool isValidBST(TreeNode *root)
{
// inorder traval
vector<TreeNode *> stack;
stack.push_back(root);
TreeNode *cur;
bool first = true;
int val;
while (!stack.empty())
{
cur = stack.back();
stack.pop_back();
if (cur != nullptr)
{
if (cur->right != nullptr)
stack.push_back(cur->right);
stack.push_back(cur);
stack.push_back(nullptr);
if (cur->left != nullptr)
stack.push_back(cur->left);
}
else
{
cur = stack.back();
stack.pop_back();
// visit
if (first)
first = false;
else if (!(val < cur->val))
return false;
val = cur->val;
}
}
return true;
}
};
// @lc code=end