Forums Register Login

LinkedList vs ArrayList Iteration

+Pie Number of slices to send: Send
Hi all,

Can someone explain me Why LinkedList is faster than ArrayList from iterating point of view ?

Is it because the underlying implementation of LinkedList is doubly link list ?

TIA
+Pie Number of slices to send: Send
Any takers ?
+Pie Number of slices to send: Send
I will assume that your premise is true that "linkedList is faster than ArrayList from iterating point of view."

A look at the class' hierarchies and their interfaces reveals the following:


Judging simply by the collections' superclasses' names and their interfaces, I'd think that LinkedList would be faster to iterate over the entire collection because LinkedList has a superclass called AbstractSequentialList, which may be aptly named because of its underlying implementation.

ArrayList implements an interface named RandomAccess, which again seems to hint at some underlying functinality. The RandomAccess interface indicates to me that seeking any single member via random access should be faster than through iterating over the entire collection via sequential access.

Your question is "Why (is) LinkedList faster than ArrayList from iterating point of view?" My answer, based solely on the interface and superclass names is that iterating over an entire collection is faster (or, at least by my intuition, should not be slower) via sequential than random access.
+Pie Number of slices to send: Send
For iteration or faster access ArrayList adds better performance.
For faster insertion LinkedList is used.

This is because ArrayList is not synchronized and hence the speed for accessing the elements using the index from the list is faster.

LinkedList implements doublyLinkedList so access to elements requires the list to be traversed using the links.

Mathangi.
+Pie Number of slices to send: Send
Thanks J Borderi that helps.

Mathangi,
I agree with you on the fact that ArrayList is not synchronized. However, LinkList is not synchronized either. It is only the Vector which is synchronized.
One more thing to add, LinkList IS FASTER than ArrayList for iterating. Please follow this link here for more details.

Thanks to both of you.
My name is Inigo Montoya, you killed my father, prepare to read a tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 1863 times.
Similar Threads
LinkedList and ArrayList
Difference between ArrayList and LinkedList?
about linked list and arraylist
What is the difference between LinkedList and ArrayList ?
On what circumstances the ArrayList, LinkedList, Vector will be used.
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 10:38:57.