Search:

Type: Posts; User: chuy525

Search: Search took 0.07 seconds.

  1. Replies
    5
    Views
    2,070

    Re: cant get LinkedList to compile

    I am having such a hard time getting my Iterator method to work. I know that I must include a class for the iterator and this is what I have so far:

    package data_structures;


    public class...
  2. Replies
    5
    Views
    2,070

    Re: cant get LinkedList to compile

    Thanks for all your help:] I just have one more question. I am nearly done with my LinkedList here it is:

    package data_structures;

    import java.util.Iterator;
    import...
  3. Replies
    5
    Views
    2,070

    cant get LinkedList to compile

    So here is my interface for my LinkedList:

    package data_structures;

    import java.util.Iterator;
    import java.util.NoSuchElementException;

    public interface ListADT<E> extends Iterable<E> {
    ...
Results 1 to 3 of 3