We seem to have a problem implementing the insert method that is given to us in the ListInterface. Can you help us with finding the right type to return? //Method in class list: public ListInterface insert(E d) { Node c = new Node(d, null, current); current.prior = c; return ????; } public interface ListInterface<E extends […]
The post What do I have to return? method insert appeared first on BlogoSfera.