vote up 10 vote down star

When is it better to use a List(Of T) vs a LinkedList(Of T)?

flag

57% accept rate

6 Answers

vote up 17 vote down check

Linked lists provide very fast insertion or deletion of a list member. Each member in a linked list contains a pointer to the next member in the list so to insert a member at position i:

  • update the pointer in member i-1 to point to the new member
  • set the pointer in the new member to point to member i

The disadvantage to a linked list is that random access is not possible. Accessing a member requires traversing the list until the desired member is found.

link|flag
I would add that linked lists have an overhead per item stored implied above via LinkedListNode which references the previous and next node. The payoff of that is a contiguous block of memory isn't required to store the list, unlike an array based list. – paulecoyote Jul 22 at 16:26
vote up -1 vote down

When you need some specific functionality from a linked list.

If you only need List functionality, you should not care how it is implemented unless you require an implementation specific aspect such as O(log N) search (or similiar).

link|flag
I was looking for what specific functionality would justify using a linked list. All you did was repeat the question as a statement. – Jonathan Allen Oct 4 '08 at 11:19
P.S. Don't be an ass. Removing a VB.NET tag on a post that uses VB.NET is just stupid. – Jonathan Allen Oct 4 '08 at 11:22
vote up 0 vote down

When you need built-in indexed access, sorting (and after this binary searching), and "ToArray()" method, you should use List.

link|flag
vote up 12 vote down

In most cases, List<T> is more useful. LinkedList<T> will have less cost when adding/removing items in the middle of the list, whre-as List<T> can only cheaply add/remove at the end of the list.

LinkedList<T> is only at it's most efficient if you are accessing sequential data (either forwards or backwards) - random access is relatively expensive since it must walk the chain each time (hence why it doesn't have an indexer). However, because a List<T> is essentially just an array (with a wrapper) random access is fine.

List<T> also offers a lot of support methods - Find, ToArray, etc; however, these are also available for LinkedList<T> with .NET 3.5/C# 3.0 via extension methods - so that is less of a factor.

link|flag
vote up 5 vote down

The difference between List and LinkedList lies in their underlying implementation. List is array based collection (ArrayList). LinkedList is node-pointer based collection (LinkedListNode). On the API level usage, both of them are pretty much the same since both implement same set of interfaces such as ICollection, IEnumerable, etc.

The key difference comes when performance matter. For example, if you are implementing the list that has heavy "INSERT" operation, LinkedList outperforms List. Since LinkedList can do it in O(1) time, but List may need to expand the size of underlying array. For more information/detail you might want to read up on the algorithmic difference between LinkedList and array data structures. http://en.wikipedia.org/wiki/Linked_list and Array

Hope this help,

Teera

link|flag
List<T> is array (T[]) based, not ArrayList based. Re insert: the array resize isn't the issue (the doubling algorithm means that most of the time it doesn't have to do this): the issue is that it must block-copy all the existing data first, which takes a little time. – Marc Gravell Oct 4 '08 at 8:38
@Marc, the 'doubling algorithm" only makes it O(logN), but it is still worse than O(1) – Ilya Ryzhenkov Oct 4 '08 at 10:02
My point was that that it isn't the resize that causes the pain - it is the blit. So worst case, if we are adding the first (zeroth) element each time, then the blit has to move everything each time. – Marc Gravell Oct 4 '08 at 10:23
vote up 0 vote down

The post below is aimed at Java classes, but it should be true to .Net classes as well, as the implementations are similar. There is a very good answer over there.

http://stackoverflow.com/questions/322715/when-to-use-linkedlist-over-arraylist

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.