深色模式
BM34 判断是不是二叉搜索树
描述
给定一个二叉树根节点,请你判断这棵树是不是二叉搜索树。
二叉搜索树满足每个节点的左子树上的所有节点均严格小于当前节点且右子树上的所有节点均严格大于当前节点。
数据范围:节点数量满足
代码
ts
/*class TreeNode {
* val: number
* left: TreeNode | null
* right: TreeNode | null
* constructor(val?: number, left?: TreeNode | null, right?: TreeNode | null) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
* }
*/
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param root TreeNode类
* @return bool布尔型
*/
function BST(root: TreeNode, min: number, max: number): boolean {
if(!root) return true;
if(root.val <= min || root.val >= max) return false;
return BST(root.left, min, root.val) && BST(root.right, root.val, max);
}
export function isValidBST(root: TreeNode): boolean {
// write code here
return BST(root, -Infinity, Infinity)
}