Class LinkedList


 

LinkedList linked_list;

Iterator<String> it =
linked_list.iterator();


/* loop through all the elements in a linked list */
while ( it.hasNext() )
{
    String element = it.next();
}

 


last update: January 25, 2005