When to use LinkedList<> over ArrayList<>? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T18:48:37Z http://stackoverflow.com/feeds/question/322715 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/322715/when-to-use-linkedlist-over-arraylist 15 When to use LinkedList<> over ArrayList<>? sdellysse 2008-11-27T01:36:35Z 2009-06-13T06:38:46Z <p>I've always been one to simply use <code>List&lt;String&gt; names = new ArrayList&lt;String&gt;();</code><br /> I use the interface as the type name for portability, so that when I ask questions such as these I can rework my code. </p> <p>When should LinkedList should be used over ArrayList and vice-versa?</p> http://stackoverflow.com/questions/322715/when-to-use-linkedlist-over-arraylist/322722#322722 5 Answer by dgtized for When to use LinkedList<> over ArrayList<>? dgtized 2008-11-27T01:39:59Z 2008-11-27T01:39:59Z <p>It's an efficiency question. LinkedList is fast for adding and deleting elements, but slow to access a specific element. ArrayList is fast for accessing a specific element but can be slow to add to either end, and especially slow to delete in the middle.</p> <p><a href="http://www.javafaq.nu/java-article1111.html" rel="nofollow">http://www.javafaq.nu/java-article1111.html</a> -- goes more in depth, as does <a href="http://en.wikipedia.org/wiki/Linked_list" rel="nofollow">http://en.wikipedia.org/wiki/Linked_list</a></p> http://stackoverflow.com/questions/322715/when-to-use-linkedlist-over-arraylist/322728#322728 1 Answer by Dustin for When to use LinkedList<> over ArrayList<>? Dustin 2008-11-27T01:41:47Z 2008-11-27T01:41:47Z <p>ArrayList is randomly accessible, while LinkedList is really cheap to expand and remove elements from. For most cases, ArrayList is fine.</p> <p>Unless you're created large lists and have measured a bottleneck, you'll probably never need to worry about the difference.</p> http://stackoverflow.com/questions/322715/when-to-use-linkedlist-over-arraylist/322729#322729 0 Answer by Matthew Schinckel for When to use LinkedList<> over ArrayList<>? Matthew Schinckel 2008-11-27T01:42:03Z 2008-11-27T01:42:03Z <p>It depends upon what operations you will be doing more on the List.</p> <p>ArrayList is faster to access an indexed value. It is much worse when inserting or deleting objects.</p> <p>To find out more, read any article that talks about the difference betwen arrays and linked lists.</p> http://stackoverflow.com/questions/322715/when-to-use-linkedlist-over-arraylist/322730#322730 9 Answer by Johannes Schaub - litb for When to use LinkedList<> over ArrayList<>? Johannes Schaub - litb 2008-11-27T01:42:36Z 2008-11-27T01:42:36Z <p>When should i use LinkedList?</p> <ul> <li>When you need efficient removal in between elements or at the start.</li> <li>When you don't need random access to elements, but can live with iterating over them one by one</li> </ul> <p>When should i use ArrayList?</p> <ul> <li>When you need random access to elements (<code>"get the nth. element"</code>)</li> <li>When you don't need to remove elements from between others. It's possible but it's slower since the internal backing-up array needs to be reallocated.</li> <li>Adding elements is amortized constant time (meaning every once in a while, you pay some performance, but overall adding is instantly done)</li> </ul> http://stackoverflow.com/questions/322715/when-to-use-linkedlist-over-arraylist/322737#322737 1 Answer by PhiLho for When to use LinkedList<> over ArrayList<>? PhiLho 2008-11-27T01:47:34Z 2008-11-27T01:47:34Z <p>In addition to the other good arguments above, you should notice ArrayList implements RandomAccess interface, while LinkedList implements Queue.<br /> So somehow they address slightly different problems, with difference of efficiency and behavior (see their list of methods).</p> http://stackoverflow.com/questions/322715/when-to-use-linkedlist-over-arraylist/322742#322742 28 Answer by Jonathan Tran for When to use LinkedList<> over ArrayList<>? Jonathan Tran 2008-11-27T01:49:42Z 2008-11-27T14:10:58Z <p>LinkedList and ArrayList are two different implementations of the List interface. LinkedList implements it with a doubly-linked list. ArrayList implements it with a dynamically resizing array.</p> <p>As with standard linked list and array operations, the various methods will have different algorithmic runtimes.</p> <p>For LinkedList</p> <ul> <li>get is O(n)</li> <li>add is O(1)</li> <li>remove is O(n)</li> <li>Iterator.remove is O(1)</li> </ul> <p>For ArrayList</p> <ul> <li>get is O(1)</li> <li>add is O(1) amortized, but O(n) worst-case since the array must be resized and copied</li> <li>remove is O(n)</li> </ul> <p>LinkedList allows for constant-time insertions or removals, but only sequential access of elements. In other words, you can walk the list forwards or backwards, but grabbing an element in the middle takes time proportional to the size of the list.</p> <p>ArrayLists, on the other hand, allow random access, so you can grab any element in constant time. But adding or removing from anywhere but the end requires shifting all the latter elements over, either to make an opening or fill the gap. Also, if you add more elements than the capacity of the underlying array, a new array (twice the size) is allocated, and the old array is copied to the new one, so adding to an ArrayList is O(n) in the worst case but constant on average.</p> <p>So depending on the operations you intend to do, you should choose the implementations accordingly. Iterating over either kind of List is practically equally cheap. (Iterating over an ArrayList is technically faster, but unless you're doing something really performance-sensitive, you shouldn't worry about this -- they're both constants.)</p> <p>Also, if you have large lists, keep in mind that memory usage is also different. Each element of a LinkedList has more overhead since pointers to the next and previous elements are also stored. ArrayLists don't have this overhead. However, ArrayLists take up as much memory as is allocated for the capacity, regardless of whether elements have actually been added.</p> <p>The default initial capacity of an ArrayList is pretty small (10 from Java 1.4 - 6). But since the underlying implementation is an array, the array must be resized if you add a lot of elements. To avoid the high cost of resizing when you know you're going to add a lot of elements, construct the ArrayList with a higher initial capacity.</p> <p>It's worth noting that <strong>Vector</strong> also implements the List interface and is almost identical to ArrayList. The difference is that Vector is synchronized, so it is thread-safe. Because of this, it also slightly slower than ArrayList. So as far as I understand, most Java programmers avoid Vector in favor of ArrayList since they will probably synchronize explicitly anyway if they care about that.</p> http://stackoverflow.com/questions/322715/when-to-use-linkedlist-over-arraylist/323889#323889 0 Answer by Tom Hawtin - tackline for When to use LinkedList<> over ArrayList<>? Tom Hawtin - tackline 2008-11-27T14:20:16Z 2008-11-27T14:20:16Z <p><code>ArrayList</code> is what you want. <code>LinkedList</code> is almost alway a (performance) bug.</p> <p>Why <code>LinkedList</code> sucks:</p> <ul> <li>It uses lots of small memory objects, and therefore impacts performance across the process.</li> <li>Lots of small object are bad for cache-locality.</li> <li>Any indexed operation is requires a traversal, i.e. has O(n) performance. This is not obvious in the source code, leading to algorithms O(n) slower than if <code>ArrayList</code> was used.</li> <li>Getting good performance is tricky.</li> <li>Even when big-O performance is the same as <code>ArrayList</code>, it is probably going to be significant slower anyway.</li> <li>It's jarring to see <code>LinkedList</code> in source because it is probably the wrong choice.</li> </ul> http://stackoverflow.com/questions/322715/when-to-use-linkedlist-over-arraylist/324953#324953 1 Answer by Jesse Wilson for When to use LinkedList<> over ArrayList<>? Jesse Wilson 2008-11-28T02:04:15Z 2008-11-28T02:04:15Z <p>If your code has <code>add(0)</code> and <code>remove(0)</code>, use a LinkedList and it's prettier <code>addFirst()</code> and <code>removeFirst()</code> methods. Otherwise, use ArrayList.</p> <p>And of course, <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/ImmutableList.html" rel="nofollow">ImmutableList</a> is your best friend.</p> http://stackoverflow.com/questions/322715/when-to-use-linkedlist-over-arraylist/882151#882151 1 Answer by Daniel Martin for When to use LinkedList<> over ArrayList<>? Daniel Martin 2009-05-19T11:21:20Z 2009-05-19T11:21:20Z <p>Yeah, I know, this is an ancient question, but I'll throw in my two cents:</p> <p>LinkedList is <em>almost always</em> the wrong choice, performance-wise. There are some very specific algorithms where a LinkedList is called for, but those are very, very rare and the algorithm will usually specifically depend on LinkedList's ability to insert and delete elements in the middle of the list relatively quickly, once you've navigated there with a ListIterator.</p> <p>There is one common use case in which LinkedList outperforms ArrayList: that of a queue. However, if your goal is performance, instead of LinkedList you should also consider using an ArrayBlockingQueue (if you can determine an upper bound on your queue size ahead of time, and can afford to allocate all the memory up front), or this <a href="http://www.javaspecialists.eu/archive/Issue027.html" rel="nofollow">CircularArrayList implementation</a>. (Yes, it's from 2001, so you'll need to generify it, but I got comparable performance ratios to what's quoted in the article just now in a recent JVM)</p>