-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValidateBinaryTree.java
More file actions
38 lines (26 loc) · 1.06 KB
/
ValidateBinaryTree.java
File metadata and controls
38 lines (26 loc) · 1.06 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
//Definition for a binary tree node.
class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode() {}
TreeNode(int val) { this.val = val; }
TreeNode(int val, TreeNode left, TreeNode right) {
this.val = val;
this.left = left;
this.right = right;
}
}
public class ValidateBinaryTree {
public boolean isValidBST(TreeNode root) {
return isValidBST(root,null,null);
}
boolean isValidBST (TreeNode root, Integer lower_bound, Integer upper_bound){
if (root == null) return true;
if (lower_bound!=null && root.val <= lower_bound) return false;
if (upper_bound != null && root.val >= upper_bound) return false;
boolean return_low = isValidBST(root.left, lower_bound, root.val);
boolean return_high = isValidBST(root.right, root.val, upper_bound);
return (return_low && return_high);
}
}