gpt4 book ai didi

java - 无法在 TreeNode 类中向左/向右移动

转载 作者:行者123 更新时间:2023-12-02 04:36:56 25 4
gpt4 key购买 nike

我正在使用 java 解决有关二叉搜索树的问题。 TreeNode 中内置类的名称。在解决方案中,它显示

enter image description here

但是,当我自己实现时,我无法执行“root.left”或“root.right”。我想知道我是否错过了什么?谢谢!

最佳答案

以这种方式访问​​右/左将意味着以这种方式实现的 TreeNode:

public class TreeNode<T> {
public TreeNode<T> right;
public TreeNode<T> left;
public T value;
}

关于java - 无法在 TreeNode 类中向左/向右移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30633246/

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