Search:

Type: Posts; User: tjoney

Search: Search took 0.23 seconds.

  1. Replies
    6
    Views
    2,311

    Re: linked list help

    need to bump this.
  2. Replies
    6
    Views
    2,311

    Re: linked list help

    public class IntegerLinkedList
    {
    private IntegerNode head;
    private int numberOfItems;
    private IntegerNode curr;
    private IntegerNode prev;


    public IntegerLinkedList( ) // default...
  3. Replies
    6
    Views
    2,311

    Re: linked list help

    I apologize for that.
  4. Replies
    6
    Views
    2,311

    linked list help

    I am new to Java programming and my instructor has assigned us the task of writing our own linked list class and told us to construct an insertAt method. I am have problems getting it to work. Any...
Results 1 to 4 of 4