gpt4 book ai didi

我的 createMinHeightBST 函数中的 JavaScript 函数声明范围

转载 作者:行者123 更新时间:2023-12-03 08:16:47 25 4
gpt4 key购买 nike

遇到一些关于我的函数声明范围的奇怪 JavaScript 问题。在我的 BST 函数中,我可以毫无问题地调用函数 node 。但在我的 createMinimalHeightBST 函数中,当我尝试调用 BST 函数时,出现错误。

错误提示:

类型错误:BST 不是函数

请参阅注释行WORKSDOESNT WORK


代码

var BST = new BST(10);

console.log(BST.root);


function node(data) {
this.data = data;
this.right = null;
this.left = null;
}

function BST(root_data) {
this.root = root_data === undefined ? root_data : new node(root_data); //WORKS
this.addNode = function(node, root) {
if (root === undefined) return this.addNode(node, this.root);
if (!root) {
root = node;
return;
}
if (root.data > node.data) {
if (!root.left) {
root.left = node;
return;
}
return this.addNode(node, root.left);
}
if (!root.right) {
root.right = node;
return;
}
return this.addNode(node, root.right);
};
}

var test = [2, 5, 9, 21, 50, 88];

function createMinimalHeightBST(sorted_arr) {
var mid = Math.floor(sorted_arr.length / 2);
var minimal_height_tree = new BST(sorted_arr[mid]); // DOESNT WORK

for (var i=0; i<sorted_arr.length; i++) {
if (i !== mid) minimal_height_tree.addNode(sorted_arr[i]);
}

return minimal_height_tree;
}

console.log(createMinimalHeightBST(test));

最佳答案

修复了代码:现在第一行中的函数与变量声明不再混淆 var BST = new BST_Function(10);

    console.log(BST.root);

function node(data) {
this.data = data;
this.right = null;
this.left = null;
}

function BST_Function(root_data) {
this.root = root_data === undefined ? root_data : new node(root_data); //WORKS
this.addNode = function (node, root) {
if (root === undefined) return this.addNode(node, this.root);
if (!root) {
root = node;
return;
}
if (root.data > node.data) {
if (!root.left) {
root.left = node;
return;
}
return this.addNode(node, root.left);
}
if (!root.right) {
root.right = node;
return;
}
return this.addNode(node, root.right);
};
}

var test = [2, 5, 9, 21, 50, 88];

function createMinimalHeightBST(sorted_arr) {
var mid = Math.floor(sorted_arr.length / 2);
var minimal_height_tree = new BST_Function(sorted_arr[mid]); // DOESNT WORK

for (var i = 0; i < sorted_arr.length; i++) {
if (i !== mid) minimal_height_tree.addNode(sorted_arr[i]);
}

return minimal_height_tree;
}

console.log(createMinimalHeightBST(test));

关于我的 createMinHeightBST 函数中的 JavaScript 函数声明范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33902376/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com