gpt4 book ai didi

java - SplayTrees 和字典

转载 作者:行者123 更新时间:2023-11-30 09:56:38 25 4
gpt4 key购买 nike

我使用 splaytree 类作为“字典”的数据存储。

我有以下方法来处理整数、对象等:

public class SplayTree<T extends Comparable<? super T>>

我还有以下内容:

public class Entry<T> {
public Entry(T word, T def){}
...
}

这是我用来添加单词条目及其定义的内容

但是当我尝试运行一些测试数据时,例如:

SplayTree<Entry> tree = new SplayTree<Entry>();
tree.insert(new Entry("test", "test"));

我收到以下错误:

Bound mismatch: The type Entry is not a valid substitute for the bounded parameter > of the type SplayTree

知道我应该如何解决这个问题吗?

最佳答案

您没有使类 Entry 实现 Comparable。

public class Entry<T> implements Comparable<T> {
// ...
public int compareTo(final T t) {
// ...
}
}

关于java - SplayTrees 和字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2214229/

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