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

时间:2015-12-02 14:13:05

标签: javascript algorithm data-structures binary-search-tree

我在网上遇到了这个问题,我编写了以下函数来检查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

4 个答案:

答案 0 :(得分:2)

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

class Node {
constructor(data) {
this.data = data;
this.left = null;
this.righ = 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));

答案 1 :(得分:1)

变量min变为非null,因为您显式调用

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

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

答案 2 :(得分:0)

另一个解决方案可能是:

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)
  );
};

答案 3 :(得分:0)

检查二叉搜索树是否有效:

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;
};