STLinkedList.java:91: cannot find symbol symbol : class iterator location: class STLinkedList public iterator Iterator() ^ STLinkedList.java:3: STLinkedList is not abstract and does not override abstract method iterator() in java.lang.Iterable public class STLinkedList implements Iterable The second of the first pair of error messages is telling you that class STLinkedList must have a method called iterator(). Look up the API documentation for ...