gpt4 book ai didi

java - 如何在java中查找二叉树中存在或不存在的节点?

转载 作者:搜寻专家 更新时间:2023-11-01 02:24:29 24 4
gpt4 key购买 nike

我试过了,但是我遇到了编译时错误。我缺少什么?如果找不到元素,我也必须返回 false

public boolean search(Node root, Node node){
if(root==node){
return true;
}
if(root.getLeft()!=null){
search(root.getLeft(), node);
}

if(root.getRight()!=null){
search(root.getRight(), node);
}
}

最佳答案

你有一个编译错误,因为你并不总是返回一些东西:

    if(root.getLeft()!=null){
search(root.getLeft(), node);
}

if(root.getRight()!=null){
search(root.getRight(), node);
}

这会修复编译错误,但不会修复算法:

    if(root.getLeft()!=null){
return search(root.getLeft(), node);
}

if(root.getRight()!=null){
return search(root.getRight(), node);
}

这应该修复算法:

    if(root.getLeft()!=null && search(root.getLeft(), node)) {
return true;
}

if(root.getRight()!=null && search(root.getRight(), node)){
return true;
}
return false;

关于java - 如何在java中查找二叉树中存在或不存在的节点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28428237/

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