我有一个以这种方式实现节点的二叉树:
public class BinaryTreeNode<T>
{
T element;
BinaryTreeNode<T> leftChild; // left subtree
BinaryTreeNode<T> rightChild; // right subtree
}
我正在尝试搜索保存在树中的最大值,但我未能创建一个成功的方法来实现这一点。这是我尝试过的:
public void maxElement(Method visit)
{
ArrayList<T> a = new ArrayList<>();
BinaryTreeNode<T> b = root;
while(b != null)
{
try
{
visit.invoke(null, b); //This visit Method is to traverse the nodes
}
catch(Exception e)
{
System.out.println(e);
}
if(b.leftChild != null)
a.add(b.leftChild.element);
if(b.rightChild != null)
a.add(b.rightChild.element);
Collections.sort(a); //Here is where it fails
System.out.println(a.get(0));
}
}
这是 IDE 抛出的错误:
绑定不匹配:Collections 类型的泛型方法 sort(List) 不适用于参数 (ArrayList)。推断的类型 T 不是有界参数的有效替代品
我知道我尝试对泛型类型进行排序失败,但是不知道如何实现我想要的。