-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathleetcode-98-validateBinarySearchTree.js
72 lines (59 loc) · 1.3 KB
/
leetcode-98-validateBinarySearchTree.js
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// var isValidBST = function (root) {
// const arr = [];
// const dfs = (root) => {
// if (!root) return;
// dfs(root.left);
// arr.push(root.val);
// dfs(root.right);
// };
// dfs(root);
// for (let i = 1; i <= arr.length; i++) {
// if (arr[i - 1] >= arr[i]) return false;
// }
// return true;
// };
// chatGPT's solution: better space complexity
class Tree {
constructor(val) {
this.left = null;
this.right = null;
this.val = val;
}
}
function isValidBST(root) {
let prev = null;
// 5
// / \
// 1 7
// / \
// -1 8
// / \
// T 6
// / \
// T T
const dfs = (node) => {
if (!node) return true;
// check left
if (!dfs(node.left)) return false;
// check current
console.log(prev);
if (prev && prev >= node.val) return false;
prev = node.val;
// check right
if (!dfs(node.right)) return false;
return true;
};
return dfs(root);
}
const a = new Tree(5);
const b = new Tree(1);
const c = new Tree(7);
const d = new Tree(-1);
const e = new Tree(8);
const f = new Tree(6);
a.left = b;
a.right = c;
c.left = d;
c.right = e;
d.right = f;
console.log(isValidBST(a));