检查二进制搜索树是否为有效javascript

Checking if a Binary Search Tree is Valid javascript

本文关键字:有效 javascript 是否 二进制 搜索树 检查      更新时间:2023-09-26

我在网上遇到了这个问题,我发现了以下函数来检查BST是否有效。然而,我不完全理解的是,max/min是如何从null变为可以进行比较的值的。因此在以下功能中:

//Give the recursive function starting values:
 function checkBST(node) {
  // console.log(node.right);
  return isValidBST(node, null, null);
}

 function isValidBST(node, min, max) {
  console.log(min, max);

  if (node === null) {
    return true;
  }
  if ((max !== null && node.val > max) || (min !== null && node.val < min)) {
    return false;
  }
  if (!isValidBST(node.left, min, node.val) || !isValidBST(node.right, node.val, max)) {
    return false;
  }
  return true;
}

var bst = new BinarySearchTree(8);
bst.insert(3);
bst.insert(1);
bst.insert(6);
bst.insert(10);
bst.insert(4);

当你从左边的最低深度回来时,它会将最低深度的值与它正上方的深度进行比较(即输出1 3时)。不知怎么的,min从null变成了1,我不知道是怎么回事,我在想,你需要某种基本情况来让最小值从null变成其他值。。。每次运行console.log min/max时,我都会在控制台中得到这个。

null null
null 8
null 3
null 1
1 3
3 8
3 6
3 4
4 6
6 8
8 null
8 10
10 null

给定一个节点,验证二进制搜索树,确保每个节点的左手子节点小于父节点的值,并且每个节点的右侧子节点都大于父

class Node {
constructor(data) {
this.data = data;
this.left = null;
this.right = null;
 }
}
class Tree {
 constructor() {
 this.root = null;
}
isValidBST(node, min = null, max = null) {
if (!node) return true;
if (max !== null && node.data >= max) {
  return false;
}
if (min !== null && node.data <= min) {
  return false;
}
const leftSide = this.isValidBST(node.left, min, node.data);
const rightSide = this.isValidBST(node.right, node.val, max);
return leftSide && rightSide;
}
}
const t = new Node(10);
t.left = new Node(0);
t.left.left = new Node(7);
t.left.right = new Node(4);
t.right = new Node(12);
const t1 = new Tree();
t1.root = t;
console.log(t1.isValidBST(t));

由于显式调用,变量min变为非null

isValidBST(node.right, node.val, max)

其中您将node.val作为参数min传递。必须是,在您进行此调用时,node.val不是null;

另一种解决方案可能是:

const isValidBST = (
  root,
  min = Number.MIN_SAFE_INTEGER,
  max = Number.MAX_SAFE_INTEGER
) => {
  if (root == null) return true;
  if (root.val >= max || root.val <= min) return false;
  return (
    isValidBST(root.left, min, root.val) &&
    isValidBST(root.right, root.val, max)
  );
};

检查二进制搜索树是否有效:

class BTNode {
  constructor(value) {
    this.value = value;
    this.left = null;
    this.right = null;
  }
}
/**
 *
 * @param {BTNode} tree
 * @returns {Boolean}
 */
const isBinarySearchTree = (tree) => {
  if (tree) {
    if (
      tree.left &&
      (tree.left.value > tree.value || !isBinarySearchTree(tree.left))
    ) {
      return false;
    }
    if (
      tree.right &&
      (tree.right.value <= tree.value || !isBinarySearchTree(tree.right))
    ) {
      return false;
    }
  }
  return true;
};