-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path98.cpp
More file actions
31 lines (26 loc) · 693 Bytes
/
98.cpp
File metadata and controls
31 lines (26 loc) · 693 Bytes
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
/**
* 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) {
int *prev = nullptr;
return isValidBST(root,&prev);
}
bool isValidBST(TreeNode* node,int **pprev){
if(!node)
return true;
bool res = isValidBST(node->left,pprev);
if(*pprev)
res = res && (node->val > **pprev);
*pprev = &(node->val);
res = res && isValidBST(node->right,pprev);
return res;
}
};