if I use a for-each loop on a linked list in java, is it guaranteed that I will iterate on the elements in the order in which they appear in the list?
|
|
Linked list is guaranteed to act in sequential order. From the documentation
iterator() Returns an iterator over the elements in this list in proper sequence. |
||||
|
|
|
As the definition of Linkedlist says, it is a sequence and you are guaranteed to get the elements in order. eg:
|
|||
|
|
|
Each java.util.List implementation is required to preserve the order so either you are using ArrayList, LinkedList, Vector, etc. each of them are ordered collections and each of them preserve the order of insertion (see http://download.oracle.com/javase/1.4.2/docs/api/java/util/List.html) |
|||
|
|