When is it better to use a List(Of T) vs a LinkedList(Of T)?
|
|
|||||
|
|
I know this answer is late but I found interesting results
Linked list (3.9 seconds)
List (2.4 seconds)
Even if you only access data essentially it is much slower!! I say never use a linkedList.
Linked List (51 seconds)
List (7.26 seconds)
Linked List having reference of location where to insert (.04 seconds)
So only if you plan on inserting several items and you also somewhere have the reference of where you plan to insert the item then use a linked list. Just because you have to insert a lot of items it does not make it faster because searching the location where you will like to insert it takes time. |
|||||||||||||||||||
|
|
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:
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. |
|||||||||||||||||||||
|
|
In most cases, List<T> is more useful. LinkedList<T> will have less cost when adding/removing items in the middle of the list, whereas 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. |
|||||
|
|
Thinking of a linked list as a list can be a bit misleading. It's more like a chain. In fact, in .NET, Linked lists may be singly linked, or doubly linked. This refers to whether each element in the chain has a link only to the next one (singly linked) or to both the prior/next elements (doubly linked). Internally, They have different performance characteristics too: Append
Prepend
Insertion
Removal
Count
Contains
As you can see, they're mostly equivalent. In practice, the API of However, if you need to do many insertions/removals from within a list, it offers constant time. |
|||||||||||||||
|
|
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, |
|||||||||||||
|
|
When you need built-in indexed access, sorting (and after this binary searching), and "ToArray()" method, you should use List. |
|||
|
|
|
The primary advantage of linked lists over arrays is that the links provide us with the capability to rearrange the items efficiently. Sedgewick, p. 91 |
|||
|
|
|
Use 1) You don't know how many objects are coming thru the flood gate. eg: for everything else it is better to use |
|||||||||
|