-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0098. Validate Binary Search Tree
42 lines (37 loc) · 1.19 KB
/
0098. Validate Binary Search Tree
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
class Solution {
// public boolean inOrder(TreeNode root, ArrayList<Integer> res){
// if (root == null) {
// return true;
// }
// if (!inOrder(root.left, res)) {
// return false;
// }
// if (res.size() != 0) {
// if (root.val <= res.get(res.size() - 1)) {
// return false;
// }
// }
// res.add(root.val);
// return inOrder(root.right, res);
// }
// public boolean isValidBST(TreeNode root) {
// ArrayList<Integer> res = new ArrayList<>();
// return inOrder(root, res);
// }
// Time complexity: O(n)
// Space complexity: O(1)
public boolean helper(TreeNode root, Integer max, Integer min) {
if (root == null) {
return true;
}
else if ((max != null && root.val >= max) || (min != null && root.val <= min)){
return false;
}
else {
return helper(root.left, root.val, min) && helper(root.right, max, root.val);
}
}
public boolean isValidBST(TreeNode root) {
return helper(root, null, null);
}
}