hi,i am wondering if anyone have sample of Linked lists program. if you do, could you please upload it in the code bank Java fourm?
Printable View
hi,i am wondering if anyone have sample of Linked lists program. if you do, could you please upload it in the code bank Java fourm?
Almost exactly like the arraylist.
Code:LinkedList ll = new LinkedList();
ll.add(a);
ll.add(b);
ll.add(c);
Interator i = ll.getIterator();
while (i.hasNext())
{
print out i.getNext();
}