Imagine a class that implements the interface ListWithIteratorInterface, as given in Listing of Segment 15.51. Suppose that aList is an instance of this class and contains Comparable objects in no particular order. Using an iterator, implement the following two methods within the class:
a. getMin returns the smallest object in the list
b. removeMin removes and returns the smallest object in the list
LISTING The interface ListWithIteratorInterface modified to extend
Iterableimport java.util.Iterator;public interface ListWithIteratorInterfaceextends ListInterface ,Iterable { public Iterator getIterator();} // end ListWithIteratorInterface
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.