I was given a generic binary search tree class with the following declaration:
public class BST<K extends Comparable<K>, V>
I was asked to write a method that reverses the BST such that the values become the keys and keys become values. When I call the following method (defined in the class given)
reverseDict.put(originalDict.get(key), key);
I get the following two error messages from Netbeans:
Exception in thread “main” java.lang.RuntimeException: Uncompilable source code – Erroneous sym type: BST.put
And also:
no suitable method found for
put(V,K)methodBST.put(BST<K,V>.Node,K,V)is not applicable (actual and formal argument lists differ in length) methodBST.put(K,V)is not applicable (actual argumentVcannot be converted toKby method invocation conversion) whereV,Kare type-variables:
V extends Objectdeclared in method<K,V>reverseBST(BST<K,V>)
K extends Comparable<K>declared in method<K,V>reverseBST(BST<K,V>)
From what the error messages are telling me, since my values do not extend Comparable I am unable to use them as keys. If I am right, how can I get around that without changing the class given (maybe a cast)?
I think the problem is that you need a
V extends Comparable<V>in order to use it as key, but you have only aVwithout bounds. I think you need to write a static method like.... in order to ensure that additional condition.