-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm98.c
32 lines (25 loc) · 777 Bytes
/
m98.c
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
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* };
*/
bool isValidBSTHelper(struct TreeNode* root, long min, long max) {
if (!root)
return true;
if ((long) root->val <= min || (long) root->val >= max)
return false;
bool output = true;
if (root->right)
output &= root->val < root->right->val
&& isValidBSTHelper(root->right, (long) root->val, max);
if (root->left)
output &= root->left->val < root->val
&& isValidBSTHelper(root->left, min, (long) root->val);
return output;
}
bool isValidBST(struct TreeNode* root) {
return isValidBSTHelper(root, LONG_MIN, LONG_MAX);
}