Linked List from Collections frame work

Hi experts.I never used linked list in a commercial application.In whcih situations we can use linked list?Can any body give some Linked list tutorial links, where I can understand them easily.Thanks in advance.Regards,Jani.
[273 byte] By [haijania] at [2007-11-27 7:07:33]
# 1

> In whcih situations we can use linked list?

Whenever you keep appending elements at the front or end, and rather iterate over the list instead of using random access.

In other words, whenever some other type of list might be less efficient.

> Can any body give some Linked list tutorial links,

> where I can understand them easily.

A tutorial!? It's a stupid list like all others too. And the basic concept of linked lists is well available on the web.

CeciNEstPasUnProgrammeura at 2007-7-12 18:58:57 > top of Java-index,Java Essentials,Java Programming...
# 2

I like to use it every once in a while just for no reason. Rooting for the underdog and all that. Of course not with big lists, but still.

Besides, it might help me spot idiots in our company, if they try to cast Lists into ArrayLists (hasn't happened so far, but it is very likely to happen).

-Kayaman-a at 2007-7-12 18:58:57 > top of Java-index,Java Essentials,Java Programming...