Array Vs. Linked List - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T23:10:48Zhttp://stackoverflow.com/feeds/question/166884http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/166884/array-vs-linked-list12Array Vs. Linked ListOnorio Catenacci2008-10-03T13:35:53Z2009-11-01T06:17:32Z
<p>I apologize--this question may be a bit open-ended but I think there are probably definite, quantifiable answers to it so I'll post it anyway.</p>
<p>A person I know is trying to learn C++ and software development (+1 to him) and he asked me why someone would want to use a linked list in preference to an array. Coding a linked list is, no doubt, a bit more work than using an array and he wondered what would justify the additional effort. </p>
<p>I gave him the answer I know: insertion of new elements is trivial in linked list but it's a major chore in an array. But then I got to thinking about it a bit more. Besides the ease of insertion of a new element into a linked list are there other advantages to using a linked list to store a set of data vs. storing it in an array? </p>
<p>As I said, I'm not meaning to start a long and drawn-out discussion. I'm just looking for other reasons that a developer might prefer a linked list to an array. </p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/166901#1669014Answer by Tom Ritter for Array Vs. Linked ListTom Ritter2008-10-03T13:39:11Z2008-10-03T13:39:11Z<p>Besides inserting into the middle of the list being easier - it's also much easier to delete from the middle of a linked list than an array. </p>
<p>But frankly, I've never used a linked list. Whenever I needed fast insertion and deletion, I also needed fast lookup, so I went to a HashSet or a Dictionary. </p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/166902#1669022Answer by itsmatt for Array Vs. Linked Listitsmatt2008-10-03T13:39:24Z2008-10-03T13:39:24Z<p>Here's a quick one: Removal of items is quicker.</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/166907#16690727Answer by Ryan for Array Vs. Linked ListRyan2008-10-03T13:40:05Z2008-10-03T13:40:05Z<ul>
<li>It's easier to store data of different sizes in a linked list. An array assumes every element is exactly the same size. </li>
<li>As you mentioned, it's easier for a linked list to grow organically. An array's size needs to be known ahead of time, or re-created when it needs to grow. </li>
<li>Shuffling a linked list is just a matter of changing what points to what. Shuffling an array is more complicated and/or takes more memory. </li>
<li>As long as your iterations all happen in a "foreach" context, you don't lose any performance in iteration. </li>
</ul>
http://stackoverflow.com/questions/166884/array-vs-linked-list/166910#1669103Answer by Rik for Array Vs. Linked ListRik2008-10-03T13:40:22Z2008-10-03T13:40:22Z<p>Eric Lippert recently had a <a href="http://blogs.msdn.com/ericlippert/archive/2008/09/22/arrays-considered-somewhat-harmful.aspx" rel="nofollow">post</a> on one of the reasons arrays should be used conservatively.</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/166923#1669233Answer by Vasil for Array Vs. Linked ListVasil2008-10-03T13:41:56Z2008-10-03T14:35:32Z<p>Other than adding and remove from the middle of the list, I like linked lists more because they can grow and shrink dynamically.</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/166933#1669331Answer by Firas for Array Vs. Linked ListFiras2008-10-03T13:43:13Z2008-10-03T13:43:13Z<p>Fast insertion and removal are indeed the best arguments for linked lists. If your structure grows dynamically and constant-time access to any element isn't required (such as dynamic stacks and queues), linked lists are a good choice.</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/166950#1669504Answer by rampion for Array Vs. Linked Listrampion2008-10-03T13:45:44Z2008-10-03T14:43:13Z<p>Merging two linked lists (especially two doubly linked lists) is much faster than merging two arrays (assuming the merge is destructive). The former takes O(1), the latter takes O(n).</p>
<p><strong>EDIT:</strong> To clarify, I meant "merging" here in the unordered sense, not as in merge sort. Perhaps "concatenating" would have been a better word.</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/166952#1669521Answer by James Curran for Array Vs. Linked ListJames Curran2008-10-03T13:46:02Z2008-10-03T13:46:02Z<p>Linked-list are especially useful when the collection is constantly growing & shrinking. For example, it's hard to imagine trying to implement a Queue (add to the end, remove from the front) using an array -- you'd be spending all your time shifting things down. On the other hand, it's trivial with a linked-list.</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/166966#16696616Answer by Jonas Klemming for Array Vs. Linked ListJonas Klemming2008-10-03T13:48:54Z2008-10-03T13:48:54Z<p>Wikipedia has very good section about the differences. </p>
<blockquote>
<p>Linked lists have several advantages
over arrays. Elements can be inserted
into linked lists indefinitely, while
an array will eventually either fill
up or need to be resized, an expensive
operation that may not even be
possible if memory is fragmented.
Similarly, an array from which many
elements are removed may become
wastefully empty or need to be made
smaller.</p>
<p>On the other hand, arrays allow random
access, while linked lists allow only
sequential access to elements.
Singly-linked lists, in fact, can only
be traversed in one direction. This
makes linked lists unsuitable for
applications where it's useful to look
up an element by its index quickly,
such as heapsort. Sequential access on
arrays is also faster than on linked
lists on many machines due to locality
of reference and data caches. Linked
lists receive almost no benefit from
the cache.</p>
<p>Another disadvantage of linked lists
is the extra storage needed for
references, which often makes them
impractical for lists of small data
items such as characters or boolean
values. It can also be slow, and with
a naïve allocator, wasteful, to
allocate memory separately for each
new element, a problem generally
solved using memory pools.</p>
</blockquote>
<p><a href="http://en.wikipedia.org/wiki/Linked_list" rel="nofollow">http://en.wikipedia.org/wiki/Linked_list</a></p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/166978#166978-1Answer by Joel Coehoorn for Array Vs. Linked ListJoel Coehoorn2008-10-03T13:51:01Z2008-10-03T13:51:01Z<p>Because no one ever codes their own linked list anymore. That'd be silly. These days it's just an exercise for students so they can understand the concept. Instead, use a pre-built list. In C++, that'd probably mean an stl vector (<code> #include <vector></code> ).</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/166980#1669800Answer by Steve Baker for Array Vs. Linked ListSteve Baker2008-10-03T13:51:18Z2008-10-03T13:51:18Z<p>It's really a matter of efficiency, the overhead to insert, remove or move (where you are not simply swapping) elements inside a linked list is minimal, i.e. the operation itself is O(1), verses O(n) for an array. This can make a significant difference if you are operating heavily on a list of data. You chose your data-types based on how you will be operating on them and choose the most efficient for the algorithm you are using.</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/166983#1669833Answer by David Nehme for Array Vs. Linked ListDavid Nehme2008-10-03T13:51:34Z2008-10-03T13:51:34Z<p>First of all, in C++ linked-lists shouldn't be much more trouble to work with than an array. You can use the <a href="http://www.sgi.com/tech/stl/List.html" rel="nofollow">std::list</a> or the <a href="http://www.boost.org/doc/libs/release/libs/ptr_container/doc/ptr_list.html" rel="nofollow">boost pointer list</a>for linked lists. The key issues with linked lists vs arrays are extra space required for pointers and terrible random access. You should use a linked list if you </p>
<ul>
<li>you don't need random access to the data</li>
<li>you will be adding/deleting elements, especially in the middle of the list</li>
</ul>
http://stackoverflow.com/questions/166884/array-vs-linked-list/166990#1669902Answer by bradtgmurray for Array Vs. Linked Listbradtgmurray2008-10-03T13:53:43Z2008-10-03T13:53:43Z<p>Two things:</p>
<blockquote>
<p>Coding a linked list is, no doubt, a bit more work than using an array and he wondered what would justify the additional effort.</p>
</blockquote>
<p>Never code a linked list when using C++. Just use the STL. How hard it is to implement should never be a reason to choose one data structure over another because most are already implemented out there.</p>
<p>As for the actual differences between an array and a linked list, the big thing for me is how you plan on using the structure. I'll use the term vector since that's the term for a resizable array in C++.</p>
<p>Indexing into a linked list is slow because you have to traverse the list to get to the given index, while a vector is contiguous in memory and you can get there using pointer math.</p>
<p>Appending onto the end or the beginning of a linked list is easy, since you only have to update one link, where in a vector you may have to resize and copy the contents over.</p>
<p>Removing an item from a list is easy, since you just have to break a pair of links and then attach them back together. Removing an item from a vector can be either faster or slower, depending if you care about order. Swapping in the last item over top the item you want to remove is faster, while shifting everything after it down is slower but retains ordering.</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/167016#16701612Answer by Alex Miller for Array Vs. Linked ListAlex Miller2008-10-03T13:59:08Z2008-10-03T15:58:32Z<p>Another good reason is that linked lists lend themselves nicely to efficient multi-threaded implementations. The reason for this is that changes tend to be local - affecting only a pointer or two for insert and remove at a localized part of the data structure. So, you can have many threads working on the same linked list. Even more, it's possible to create lock-free versions using CAS-type operations and avoid heavy-weight locks altogether.</p>
<p>With a linked list, iterators can also traverse the list while modifications are occurring. In the optimistic case where modifications don't collide, iterators can continue without contention.</p>
<p>With an array, any change that modifies the size of the array is likely to require locking a large portion of the array and in fact, it's rare that this is done without a global lock across the whole array so modifications become stop the world affairs.</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/167055#1670552Answer by tloach for Array Vs. Linked Listtloach2008-10-03T14:08:35Z2008-10-03T14:08:35Z<p>Arrays make sense where the exact number of items will be known, and where searching by index makes sense. For example, if I wanted to store the exact state of my video output at a given moment without compression I would probably use an array of size [1024][768]. This will provide me with exactly what I need, and a list would be much, much slower to get the value of a given pixel. In places where an array does not make sense there are generally better data types than a list to deal with data effectively.</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/167059#167059-2Answer by liinkas for Array Vs. Linked Listliinkas2008-10-03T14:09:26Z2008-10-03T14:09:26Z<p>Only reason to use linked list is that insert the element is easy (removing also).</p>
<p>Disadvatige could be that pointers take a lot of space.</p>
<p>And about that coding is harder:
Usually you don't need code linked list (or only once) they are included in
<a href="http://www.cplusplus.com/reference/stl/" rel="nofollow">STL</a>
and it is not so complicated if you still have to do it.</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/167448#1674482Answer by Brian for Array Vs. Linked ListBrian2008-10-03T15:33:47Z2008-10-03T15:33:47Z<p>I'll add one other - lists can act as <a href="http://en.wikipedia.org/wiki/Purely_functional#Linked_lists" rel="nofollow">purely functional</a> data structures. </p>
<p>For instance, you can have completely different lists sharing the same end section</p>
<pre><code>a = (1 2 3 4, ....)
b = (4 3 2 1 1 2 3 4 ...)
c = (3 4 ...)
</code></pre>
<p>ie:</p>
<pre><code>b = 4 -> 3 -> 2 -> 1 -> a
c = a.next.next
</code></pre>
<p>without having to copy the data being pointed to by a into b and c.</p>
<p>This is why they are so popular in functional languages, which use immutable variables - preprend and tail operations can occur freely without having to copy the original data - very important features when you're treating data as immutable.</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/239239#2392390Answer by iram Arshad for Array Vs. Linked Listiram Arshad2008-10-27T06:59:00Z2008-10-27T06:59:00Z<p>i also think that link list is more better than arrays.
because we do traversing in link list but not in arrays</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/1353928#13539280Answer by debayan for Array Vs. Linked Listdebayan2009-08-30T13:57:42Z2009-08-30T13:57:42Z<p>as arrays are static in nature, therefore all operations
like memory allocation occur at the time of compilation
only. So processor has to put less effort at its runtime .</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/1656440#16564401Answer by unknown (google) for Array Vs. Linked Listunknown (google)2009-11-01T04:58:25Z2009-11-01T04:58:25Z<p>Arrays:
1)Accessing/Searching : fast due to random access of any element in array (remember address of array element will be computed as base address + offset, so its just memory fetch along with one addition operation) — O(1)</p>
<p>2)Inserting/Deleting at end — fast — O(1)</p>
<p>3)Even sequential access on arrays are fast — due to locality of reference, for linked lists this may not well applied</p>
<p>1) The size of the array is fixed. Most often this size is specified at compile time however the size of the array can be deferred until the array is created at runtime (from heap), but after that it remains fixed. This causes to waste memory eventhough e may not use.</p>
<p>2) Inserting/Deleting elements at the front is potentially expensive because existing elements need to be shifted over to make room — O(n)</p>
<p>3)When array was full, to insert more data, it need to be resized, this operation is quite expensive, even may not be possible if in case memory got fragmented.
Linked lists performs well where arrays fail to do it.</p>
<p>Linked Lists:
1)Accessing/Searching: sequential access - O(n)</p>
<p>2)Inserting/Deleting at the end — fast — O(1)</p>
<p>3)Inserting/Deleting at the beginning — fast — O(1)</p>
<p>4)It makes good persistent data structure (because two or more lists can have a common tail, so several versions of a data can be maintained, new data comes at the beginning of a new list)</p>
<p>5)No space problems, memory effectively used.</p>
<p>6)Inserting/Deleting in the middle — O(n)</p>
<p>7)can not make use of locality of reference</p>
<p>reference: <a href="http://www.cpp-programming.net/c-tidbits/linked-lists/" rel="nofollow">http://www.cpp-programming.net/c-tidbits/linked-lists/</a></p>
http://stackoverflow.com/questions/166884/array-vs-linked-list/1656533#16565331Answer by mhaller for Array Vs. Linked Listmhaller2009-11-01T06:17:32Z2009-11-01T06:17:32Z<p>A widely unappreciated argument for ArrayList and against LinkedList is that <strong>LinkedLists are uncomfortable while debugging</strong>. The time spent by maintenance developers to understand the program, e.g. to find bugs, increases and IMHO does sometimes not justify the nanoseconds in performance improvements or bytes in memory consumption in enterprise applicatons. Sometimes (well, of course it depends on the type of applications), it's better to waste a few bytes but have an application which is more maintainable or easier to understand.</p>
<p>For example, in a Java environment and using the Eclipse debugger, debugging an ArrayList will reveal a very easy to understand structure:</p>
<pre><code>arrayList ArrayList<String>
elementData Object[]
[0] Object "Foo"
[1] Object "Foo"
[2] Object "Foo"
[3] Object "Foo"
[4] Object "Foo"
...
</code></pre>
<p>On the other hand, watching the contents of a LinkedList and finding specific objects becomes a Expand-The-Tree clicking nightmare, not to mention the cognitive overhead needed to filter out the LinkedList internals:</p>
<pre><code>linkedList LinkedList<String>
header LinkedList$Entry<E>
element E
next LinkedList$Entry<E>
element E "Foo"
next LinkedList$Entry<E>
element E "Foo"
next LinkedList$Entry<E>
element E "Foo"
next LinkedList$Entry<E>
previous LinkedList$Entry<E>
...
previous LinkedList$Entry<E>
previous LinkedList$Entry<E>
previous LinkedList$Entry<E>
</code></pre>