Search:

Type: Posts; User: jay2you

Search: Search took 0.07 seconds.

  1. Re: Implementation of remove method in linkedlist Iterator

    Sorry i didn't meant to cheat here. I have tried to implement the remove method myself but it seem cannot work. I just need some guide on implementing the remove method.
  2. Implementation of remove method in linkedlist Iterator

    import java.util.*;
    public class LinkedListADT
    {
    private Node first;
    int size=0;

    public LinkedListADT ()
    {
    first = null;
    }
Results 1 to 2 of 2