class LinkedList<A> implements Collection<A> { public LinkedList (); public void add (A elt); public Iterator<A> iterator (); }