-
Notifications
You must be signed in to change notification settings - Fork 0
/
98.验证二叉搜索树.js
88 lines (84 loc) · 1.64 KB
/
98.验证二叉搜索树.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
* @lc app=leetcode.cn id=98 lang=javascript
*
* [98] 验证二叉搜索树
*
* https://leetcode.cn/problems/validate-binary-search-tree/description/
*
* algorithms
* Medium (36.18%)
* Likes: 1665
* Dislikes: 0
* Total Accepted: 548.1K
* Total Submissions: 1.5M
* Testcase Example: '[2,1,3]'
*
* 给你一个二叉树的根节点 root ,判断其是否是一个有效的二叉搜索树。
*
* 有效 二叉搜索树定义如下:
*
*
* 节点的左子树只包含 小于 当前节点的数。
* 节点的右子树只包含 大于 当前节点的数。
* 所有左子树和右子树自身必须也是二叉搜索树。
*
*
*
*
* 示例 1:
*
*
* 输入:root = [2,1,3]
* 输出:true
*
*
* 示例 2:
*
*
* 输入:root = [5,1,4,null,null,3,6]
* 输出:false
* 解释:根节点的值是 5 ,但是右子节点的值是 4 。
*
*
*
*
* 提示:
*
*
* 树中节点数目范围在[1, 10^4] 内
* -2^31 <= Node.val <= 2^31 - 1
*
*
*/
// @lc code=start
/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {TreeNode} root
* @return {boolean}
*/
var isValidBST = function (root) {
if (!root) return true
let node = root,
min = -Infinity
const stack = []
while (stack.length || node !== null) {
if (node) {
stack.push(node)
node = node.left
} else {
node = stack.pop()
if (min >= node.val) return false
min = node.val
node = node.right
}
}
return true
}
// @lc code=end