我甚至不确定这个问题的标题应该是什么 - 我不确定到底出了什么问题。
我正在编写一个简单地遍历二叉树的函数。让我们说我们有一个简单的树,例如:
testTree = {
data: 5,
left: {
data: 10,
left: undefined,
right: undefined
},
right: {
data: 2,
left: undefined,
right: undefined
}
}
我们正试图从中收集数据,从最左边的路径开始。这是搜索左功能:
function searchLeft(node, path){
if(typeof node.left == 'undefined'){
console.log(path);
return path;
}
node = JSON.parse(JSON.stringify(node.left));
path.push(node.data);
searchLeft(node,path);
}
当我运行它时,内部console.log(路径)显示正确的值:
[10]
但如果我
console.log(searchLeft(testTree,[]));
我得到了
未定义
为什么函数没有正确返回[10]?
谢谢!
答案 0 :(得分:4)
您的递归调用必须将值返回给调用者
function searchLeft(node, path) {
if (typeof node.left == 'undefined') {
console.log(path);
return path;
}
node = JSON.parse(JSON.stringify(node.left));
path.push(node.data);
return searchLeft(node, path); //here return
}