我试图编写一个验证二叉搜索树的函数。我有一个版本工作,我按顺序遍历并推送到一个数组,但我还试图做一个版本,你可以递归跟踪最小和最大。我成功传入树,它检查我的第一个checkBST函数中的第一个节点,但在isValidBST函数中,递归调用永远不会发生,似乎每个节点都被视为null,我不知道为什么。将欣赏任何人的意见!
function BinarySearchTree(value) {
this.val = value;
this.left = null;
this.right = null;
}
//insert
BinarySearchTree.prototype.insert = function (toInsert) {
if (this.val > toInsert) {
if (this.left === null) {
this.left = new BinarySearchTree(toInsert);
} else {
this.left.insert(toInsert);
}
}
if (this.val < toInsert) {
if (this.right === null) {
this.right = new BinarySearchTree(toInsert);
} else {
this.right.insert(toInsert);
}
}
};
function checkBST(node) {
// console.log(node.right);
return isValidBST(node, null, null);
}
function isValidBST(node, min, max) {
// console.log(min, max);
//this keeps getting called
if (node === null) {
console.log("CHECKING NULL");
return true;
}
// this doesn't get called, which is good
if ((min !== null && node.val > max) || (max !== null && node.val < min)) {
console.log("CHECKING NODE VALUES in false", node.val);
return false;
}
//these calls are never entered.
if (!checkBST(node.left, min, node.val) || !checkBST(node.right, node.val, max)) {
console.log("CHECKING NODE VALUES in recursive call", node.val);
return false;
}
return true;
}
var bst = new BinarySearchTree(7);
bst.insert(9);
bst.insert(6);
bst.insert(4);
console.log(checkBST(bst));
答案 0 :(得分:2)
当前代码中有一个容易错过但重要的缺陷: isValidBST()应该递归到自身( isValidBST()),而不是 checkBST(),忽略节点参数后的任何参数。