Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've always been one to simply use List<String> names = new ArrayList<String>();
I use the interface as the type name for portability, so that when I ask questions such as these I can rework my code.

When should LinkedList be used over ArrayList and vice-versa?

share|improve this question

24 Answers

up vote 582 down vote accepted

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.

As with standard linked list and array operations, the various methods will have different algorithmic runtimes.

For LinkedList

  • get is O(n)
  • add is O(1)
  • remove is O(n)
  • Iterator.remove is O(1)

For ArrayList

  • get is O(1)
  • add is O(1) amortized, but O(n) worst-case since the array must be resized and copied
  • remove is O(n)

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.

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.

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.)

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.

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.

It's worth noting that Vector 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 is 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.

share|improve this answer
37  
Forgot to mention insertion costs. In a LinkedList, once you have the correct position, insertion costs O(1), while in an ArrayList it goes up to O(n) - all elements past the insertion point must be moved. – David Rodríguez - dribeas Nov 27 '08 at 7:20
7  
Regarding the use of Vector: There really is no need to fall back to Vector. The way to do this is with your preferred List implementation and a call to synchronizedList to give it a synchronized wrapper. See: java.sun.com/docs/books/tutorial/collections/implementations/… – Ryan Cox Nov 27 '08 at 12:19
1  
@Ken Brock That's add(int,E) vs add(E). – Tom Hawtin - tackline Dec 12 '10 at 21:20
14  
No, for a LinkedList, get is still O(n) even if you know the position, because in order to get to that position, the underlying implementation has to walk the linked list's "next" pointers to get to that position's value. There is no such thing as random access. For position 2, walking the pointers might be cheap, but for position 1 million, not so cheap. The point is, it's proportional to the position, which means it's O(n). – Jonathan Tran Mar 11 '11 at 19:03
11  
@Kevin It may matter that memory is "close together". Hardware will cache contiguous blocks of memory (dynamic RAM) into faster static RAM in the L1 or L2 cache. In theory and most of the time practically, memory can be treated as random-access. But in reality, reading through memory sequentially will be slightly faster than in random order. For a performance-critical loop, this could matter. They call it "spatial locality" or locality of reference. – Jonathan Tran May 5 '11 at 20:25
show 17 more comments

Thusfar, nobody seems to have addressed the memory footprint of each of these lists besides the general consensus that a LinkedList is "lots more" than an ArrayList so I did some number crunching to demonstrate exactly how much both lists take up for N null references.

Since references are either 32 or 64 bits (even when null) on their relative systems, I have included 4 sets of data for 32 and 64 bit LinkedLists and ArrayLists.

Note: The sizes shown for the ArrayList lines for trimmed lists - In practice, the capacity of an ArrayList is generally larger than the element count.

Graph of LinkedList and ArrayList No. of Elements x Bytes

The result clearly shows that LinkedList is a whole lot more than ArrayList, especially with a very high element count. If memory is a factor, steer clear of LinkedLists.

The formulas I used follow, let me know if I have done anything wrong and I will fix it up. 'b' is either 4 or 8 for 32 or 64 bit systems, and 'n' is the number of elements. Note the reason for the mods is because all objects in java will take up a multiple of 8 bytes space regardless of whether it is all used or not.

ArrayList:

Reference to ArrayList + (ArrayList object overhead + (size integer + array reference + (array oject overhead + b * n) + MOD(array oject, 8))) + MOD(ArrayList object, 8) == b + (8 + (4 + b + (12 + b * n) + MOD(12 + b * n, 8))) + MOD(8 + (4 + b + (12 + b * n) + MOD(12 + b * n, 8)), 8)

LinkedList:

Reference to LinkedList + (LinkedList object overhead + (size integer + reference to header + (node object overhead + reference to previous element + reference to next element + reference to element) * n) + MOD(node object, 8)) + MOD(LinkedList object, 8) == b + (8 + (4 + b + (8 + 3 * b) * n) + MOD((8 + 3 * b) * n, 8)) + MOD(8 + (4 + b + (8 + 3 * b) * n) + MOD((8 + 3 * b) * n, 8), 8)
share|improve this answer
23  
Why a downvote? If Ive made an error, please comment and I can fix. – Numeron Aug 1 '12 at 7:42
5  
nice diagram; means more than a giant block of text – Katana24 Oct 16 '12 at 9:15
Quite interesting to see that LinkedList requires as much memory as ArrayList for storing a single element. How unintuitive! What happens if you run your example with -XX:+UseCompressedOops? – jontejj Apr 17 at 15:31
Unfortunately I worked the formulas out by hand and punched them into excel rather than doing memory dumps or whatever. I don't really know much about compressed oops, but reading a quick summary suggests it might make the 64 bit lines equal to their 32 bit counterpart. I think however, that its probably implementation specific and dependant on external factors, making it somewhere inbetween the two and impossible to accurately calculate on paper. – Numeron Apr 19 at 6:24

When should I use LinkedList?

  • When you need efficient removal in between elements or at the start.
  • When you don't need random access to elements, but can live with iterating over them one by one

When should I use ArrayList?

  • When you need random access to elements ("get the nth. element")
  • 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.
  • Adding elements is amortized constant time (meaning every once in a while, you pay some performance, but overall adding is instantly done)
share|improve this answer
Adding elements is okay, unless you are going to push over the currently allocated number of elements, in which case it becomes fairly expensive (copy all of the items to a new, larger array). – Matthew Schinckel Nov 27 '08 at 1:44

As someone who has been doing operational performance engineering on very large scale SOA web services for about a decade, I would prefer the behavior of LinkedList over ArrayList. While the steady-state throughput of LinkedList is worse and therefore might lead to buying more hardware -- the behavior of ArrayList under pressure could lead to apps in a cluster expanding their arrays in near synchronicity and for large array sizes could lead to lack of responsiveness in the app and an outage, while under pressure, which is catastrophic behavior.

Similarly, you can get better throughput in an app from the default throughput tenured garbage collector, but once you get java apps with 10GB heaps you can wind up locking up the app for 25 seconds during a Full GCs which causes timeouts and failures in SOA apps and blows your SLAs if it occurs too often. Even though the CMS collector takes more resources and does not achieve the same raw throughput, it is a much better choice because it has more predictable and smaller latency.

ArrayList is only a better choice for performance if all you mean by performance is throughput and you can ignore latency. In my experience at my job I cannot ignore worst-case latency.

share|improve this answer
2  
+1 for a nice example – Shawn May 24 '12 at 17:07
2  
+1 for all that jargon (SOA, SLAs, CMS, etc.) – andrewb Aug 21 '12 at 12:30
1  
Wouldn't another solution be managing the size of the list programmatically by using the ArrayList's ensureCapacity() method? My question is why are so many things being stored in a bunch of brittle data structures when they might better be stored in a caching or db mechanism? I had an interview the other day where they swore up and down about the evils of ArrayList, but I come here and I find that the complexity analysis is all-around better! GREAT POINT FOR DISCUSSION, THOUGH. THANKS! – ingyhere Oct 30 '12 at 5:33

ArrayList is what you want. LinkedList is almost always a (performance) bug.

Why LinkedList sucks:

  • It uses lots of small memory objects, and therefore impacts performance across the process.
  • Lots of small object are bad for cache-locality.
  • 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 ArrayList was used.
  • Getting good performance is tricky.
  • Even when big-O performance is the same as ArrayList, it is probably going to be significant slower anyway.
  • It's jarring to see LinkedList in source because it is probably the wrong choice.
share|improve this answer
46  
Sorry. marked you down. LinkedList doesn't suck. There are situations where LinkedList is the correct class to use. I agree that there aren't many situations where it is better than an arraylist, but they do exist. Educate people who do silly things! – David Turner Nov 27 '08 at 17:50
6  
Sorry to see you got lots of down-votes for this. There is indeed very little reason to use Java's LinkedList. In addition to the bad performance it also uses lots more memory than the other concrete List classes (every node has two additional pointers and each node is a separate wrapper object with the extra overhead bytes that go with them). – Kevin Brock Mar 23 '10 at 0:46
11  
@Kevin I'm thick skinned enough to weather a few downvotes from stackoverflowers. – Tom Hawtin - tackline Mar 23 '10 at 2:52
6  
This is one of the most useful answers here. It's a shame so many programmers fail to understand (a) the difference between abstract data types and concrete implementations, and (b) the real-world importance of constant factors and memory overhead in determining performance. – Porculus Sep 10 '10 at 17:25
10  
-1: This is a rather blinkered view. Yes, it's true that ArrayList is a very versatile tool. However, it has its limitations. There are cases in which this will cause you trouble, and you will have to use LinkedList. Of course, it is a very specialized solution, and, as any specialized tool, in most cases it is outperformed by a versatile one. But that doesn't mean that it "sucks" or something like that, you just have to know when to use it. – Malcolm Aug 8 '11 at 13:43
show 9 more comments

Yeah, I know, this is an ancient question, but I'll throw in my two cents:

LinkedList is almost always 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.

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 CircularArrayList implementation. (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)

share|improve this answer
+1 For that reference to CircularArrayList. This is a valuable part of my library. – Kevin Brock Mar 23 '10 at 0:48
8  
From Java 6 you can use ArrayDeque. docs.oracle.com/javase/6/docs/api/java/util/ArrayDeque.html – Thomas Ahle Dec 30 '11 at 15:01
Algorithm     ArrayList   LinkedList
access front     O(1)         O(1)
access back      O(1)         O(1)
access middle    O(1)         O(N)
insert at front  O(N)         O(1)
insert at back   O(1)         O(1)
insert in middle O(N)         O(1)

http://leepoint.net/notes-java/algorithms/big-oh/bigoh.html

ArrayLists are good for write-once-read-many or appenders, but bad at add/remove from the front or middle.

share|improve this answer
8  
You can't compare big-O values directly without thinking about constant factors. For small lists (and most lists are small), ArrayList's O(N) is faster than LinkedList's O(1). – Porculus Sep 10 '10 at 17:23
1  
I don't care about small lists performance, and neither does my computer unless it is used in a loop somehow. – owlstead Aug 18 '11 at 16:35
9  
LinkedList can't really insert in the middle in O(1). It has to run through half the list to find the insertion point. – Thomas Ahle Dec 30 '11 at 15:02
3  
LinkedList: insert in middle O(1) - is WRONG! I found out that even insertion into 1/10th position of the LinkedList size is slower than inserting an element into 1/10th position of an ArrayList. And even worse: the end of collection. inserting into last positions (not the very last) of ArrayList is faster then into last positions (not the very last) of LinkedList – kachanov May 13 '12 at 14:29

Correct or Incorrect: Please execute test locally and decide yourself!!

Edit/Remove is faster in LinkedList than ArrayList.

ArrayList, backed by Array, which needs to be double the size, is worse in large volume application.

Below is the unit test result for each operation.Timing is given in Nanoseconds.


                                ArrayList                      Linked List  

AddAll   (Insert)               101,16719                      2623,29291 

Add      (Insert-Sequentially)  152,46840                      966,62216

Add      (insert-randomly)      36527                          29193

remove   (Delete)               20,56,9095                     20,45,4904

contains (Search)               186,15,704                     189,64,981

            import org.junit.Assert;
            import org.junit.Test;

            import java.util.*;

            public class ArrayListVsLinkedList {
                private static final int MAX = 500000;
                String[] strings = maxArray();

                ////////////// ADD ALL ////////////////////////////////////////
                @Test
                public void arrayListAddAll() {
                    Watch watch = new Watch();
                    List<String> stringList = Arrays.asList(strings);
                    List<String> arrayList = new ArrayList<String>(MAX);

                    watch.start();
                    arrayList.addAll(stringList);
                    watch.totalTime("Array List addAll() = ");//101,16719 Nanoseconds
                }

                @Test
                public void linkedListAddAll() throws Exception {
                    Watch watch = new Watch();
                    List<String> stringList = Arrays.asList(strings);

                    watch.start();
                    List<String> linkedList = new LinkedList<String>();
                    linkedList.addAll(stringList);
                    watch.totalTime("Linked List addAll() = ");  //2623,29291 Nanoseconds
                }

                //Note: ArrayList is 26 time faster here than LinkedList for addAll()

                ///////////////// INSERT /////////////////////////////////////////////
                @Test
                public void arrayListAdd() {
                    Watch watch = new Watch();
                    List<String> arrayList = new ArrayList<String>(MAX);

                    watch.start();
                    for (String string : strings)
                        arrayList.add(string);
                    watch.totalTime("Array List add() = ");//152,46840 Nanoseconds
                }

                @Test
                public void linkedListAdd() {
                    Watch watch = new Watch();

                    List<String> linkedList = new LinkedList<String>();
                    watch.start();
                    for (String string : strings)
                        linkedList.add(string);
                    watch.totalTime("Linked List add() = ");  //966,62216 Nanoseconds
                }

                //Note: ArrayList is 9 times faster than LinkedList for add sequentially

                /////////////////// INSERT IN BETWEEN ///////////////////////////////////////

                @Test
                public void arrayListInsertOne() {
                    Watch watch = new Watch();
                    List<String> stringList = Arrays.asList(strings);
                    List<String> arrayList = new ArrayList<String>(MAX + MAX / 10);
                    arrayList.addAll(stringList);

                    String insertString0 = getString(true, MAX / 2 + 10);
                    String insertString1 = getString(true, MAX / 2 + 20);
                    String insertString2 = getString(true, MAX / 2 + 30);
                    String insertString3 = getString(true, MAX / 2 + 40);

                    watch.start();

                    arrayList.add(insertString0);
                    arrayList.add(insertString1);
                    arrayList.add(insertString2);
                    arrayList.add(insertString3);

                    watch.totalTime("Array List add() = ");//36527
                }

                @Test
                public void linkedListInsertOne() {
                    Watch watch = new Watch();
                    List<String> stringList = Arrays.asList(strings);
                    List<String> linkedList = new LinkedList<String>();
                    linkedList.addAll(stringList);

                    String insertString0 = getString(true, MAX / 2 + 10);
                    String insertString1 = getString(true, MAX / 2 + 20);
                    String insertString2 = getString(true, MAX / 2 + 30);
                    String insertString3 = getString(true, MAX / 2 + 40);

                    watch.start();

                    linkedList.add(insertString0);
                    linkedList.add(insertString1);
                    linkedList.add(insertString2);
                    linkedList.add(insertString3);

                    watch.totalTime("Linked List add = ");//29193
                }


                //Note: LinkedList is 3000 nanosecond faster than ArrayList for insert randomly.

                ////////////////// DELETE //////////////////////////////////////////////////////
                @Test
                public void arrayListRemove() throws Exception {
                    Watch watch = new Watch();
                    List<String> stringList = Arrays.asList(strings);
                    List<String> arrayList = new ArrayList<String>(MAX);

                    arrayList.addAll(stringList);
                    String searchString0 = getString(true, MAX / 2 + 10);
                    String searchString1 = getString(true, MAX / 2 + 20);

                    watch.start();
                    arrayList.remove(searchString0);
                    arrayList.remove(searchString1);
                    watch.totalTime("Array List remove() = ");//20,56,9095 Nanoseconds
                }

                @Test
                public void linkedListRemove() throws Exception {
                    Watch watch = new Watch();
                    List<String> linkedList = new LinkedList<String>();
                    linkedList.addAll(Arrays.asList(strings));

                    String searchString0 = getString(true, MAX / 2 + 10);
                    String searchString1 = getString(true, MAX / 2 + 20);

                    watch.start();
                    linkedList.remove(searchString0);
                    linkedList.remove(searchString1);
                    watch.totalTime("Linked List remove = ");//20,45,4904 Nanoseconds
                }

                //Note: LinkedList is 10 millisecond faster than ArrayList while removing item.

                ///////////////////// SEARCH ///////////////////////////////////////////
                @Test
                public void arrayListSearch() throws Exception {
                    Watch watch = new Watch();
                    List<String> stringList = Arrays.asList(strings);
                    List<String> arrayList = new ArrayList<String>(MAX);

                    arrayList.addAll(stringList);
                    String searchString0 = getString(true, MAX / 2 + 10);
                    String searchString1 = getString(true, MAX / 2 + 20);

                    watch.start();
                    arrayList.contains(searchString0);
                    arrayList.contains(searchString1);
                    watch.totalTime("Array List addAll() time = ");//186,15,704
                }

                @Test
                public void linkedListSearch() throws Exception {
                    Watch watch = new Watch();
                    List<String> linkedList = new LinkedList<String>();
                    linkedList.addAll(Arrays.asList(strings));

                    String searchString0 = getString(true, MAX / 2 + 10);
                    String searchString1 = getString(true, MAX / 2 + 20);

                    watch.start();
                    linkedList.contains(searchString0);
                    linkedList.contains(searchString1);
                    watch.totalTime("Linked List addAll() time = ");//189,64,981
                }

                //Note: Linked List is 500 Milliseconds faster than ArrayList

                class Watch {
                    private long startTime;
                    private long endTime;

                    public void start() {
                        startTime = System.nanoTime();
                    }

                    private void stop() {
                        endTime = System.nanoTime();
                    }

                    public void totalTime(String s) {
                        stop();
                        System.out.println(s + (endTime - startTime));
                    }
                }


                private String[] maxArray() {
                    String[] strings = new String[MAX];
                    Boolean result = Boolean.TRUE;
                    for (int i = 0; i < MAX; i++) {
                        strings[i] = getString(result, i);
                        result = !result;
                    }
                    return strings;
                }

                private String getString(Boolean result, int i) {
                    return String.valueOf(result) + i + String.valueOf(!result);
                }
            }
share|improve this answer
1  
ArrayList need not to be doubled, to be precise. Please check the sources first. – Łukasz Lech May 6 at 14:40

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.

http://www.javafaq.nu/java-article1111.html -- goes more in depth, as does http://en.wikipedia.org/wiki/Linked_list

share|improve this answer

ArrayList is randomly accessible, while LinkedList is really cheap to expand and remove elements from. For most cases, ArrayList is fine.

Unless you're created large lists and have measured a bottleneck, you'll probably never need to worry about the difference.

share|improve this answer
3  
I like the last part here! – Matthew Schinckel Nov 27 '08 at 1:42
4  
LinkedList is not cheap to add elements to. It is almost always quicker to add a million elements to an ArrayList than to add them to a LinkedList. And most lists in real-world code are not even a million elements long. – Porculus Sep 10 '10 at 17:21
2  
At any given point, you know the cost of adding an item to your LinkedList. The ArrayList you do not (in general). Adding a single item to an ArrayList containing a million items could take a very long time -- it's an O(n) operation plus double the storage unless you preallocated space. Adding an item to a LinkedList is O(1). My last statement stands. – Dustin Sep 10 '10 at 23:03
Adding a single item to an ArrayList is O(1) no matter it is 1 million or 1 billion. Adding an item to a LinkedList is also O(1). "Adding" means ADDING TO THE END. – kachanov May 13 '12 at 14:36
You must've read the implementation differently than I do. In my experience, copying a 1 billion element array takes longer than copying a 1 million element array. – Dustin May 14 '12 at 5:57
show 3 more comments

(note: might read a little oddly; that is because I merged a virtually identical .NET question; C# and Java are close enough that the concepts are identical)

Well, you should avoid ArrayList unless you are using .NET 1.1 (or micro-framework) - prefer typed collections like List<T> where possible.

The difference comes from the cost of traversal and manipulation. It is trivial to remove a node from the start or middle of a linked list, since you just re-link the nodes (likewise insert at any point). Removing an element from the start or middle of an array-backed list (including ArrayList and List<T>) involves copying all the elements above that point (as does inserting).

In both cases, inserting at the end is cheap (although the List<T> etc will occasionally have to resize the underlying array to make space, but it does this in a fairly sensible way).

If you just want to append, then use List<T> etc.

share|improve this answer

If your code has add(0) and remove(0), use a LinkedList and it's prettier addFirst() and removeFirst() methods. Otherwise, use ArrayList.

And of course, Guava's ImmutableList is your best friend.

share|improve this answer
1  
For small lists, ArrayList.add(0) is still always going to be faster than LinkedList.addFirst(). – Porculus Sep 10 '10 at 17:20

LinkedList is faster in add and remove, but slower in get. In brief, LinkedList should be preferred if:

  1. there are no large number of random access of element
  2. there are a large number of add/remove operations

ArrayList is essentially an array. LinkedList is implemented as a double linked list.

The above discussion is mainly about add, get and remove.

The get is pretty clear. O(1) for ArrayList, because ArrayList allow random access by using index. O(n) for LinkedList, because it needs to find the index first.

There are different versions of add and remove.

=== ArrayList ===

  • add(E e)
        • add at the end of ArrayList
        • require memory resizing cost.
        • O(n) worst, O(1) amortized
  • add(int index, E element)
        • add to a specific index position
        • require shifting & possible memory resizing cost
        • O(n)
  • remove(int index)
        • remove a specified element
        • require shifting & possible memory resizing cost
        • O(n)
  • remove(Object o)
        • remove the first occurrence of the specified element from this list
        • need to search the element first, and then shifting & possible memory resizing cost
        • O(n)

=== LinkedList ===

  • add(E e)
        • add to the end of the list
        • O(1)
  • add(int index, E element)

        • insert at specified position
        • need to find the position first
        • O(n)
  • remove()
        • remove first element of the list
        • O(1)
  • remove(int index)
        • remove element with specified index
        • need to find the element first
        • O(n)
  • remove(Object o)
        • remove the first occurrence of the specified element
        • need to find the element first
        • O(n)
share|improve this answer

In addition to the other good arguments above, you should notice ArrayList implements RandomAccess interface, while LinkedList implements Queue.
So somehow they address slightly different problems, with difference of efficiency and behavior (see their list of methods).

share|improve this answer

An array list is essentially an array with methods to add items etc. (and you should use a generic list instead). It is a collection of items which can be accessed through an indexer (for example [0]). It implies a progression from one item to the next.

A linked list specifies a progression from one item to the next (Item a -> item b). You can get the same effect with an array list, but a linked list absolutely says what item is supposed to follow the previous one.

share|improve this answer

I have read the responses, but there is one scenario where I always use a LinkedList over an ArrayList that I want to share to hear opinions:

Every time I had a method that returns a list of data obtained from a DB I always use a LinkedList.

My rationale was that because it is impossible to know exactly how many results am I getting, there will be not memory wasted (as in ArrayList with the difference between the capacity and actual number of elements), and there would be no time wasted trying to duplicate the capacity.

As far a ArrayList, I agree that at least you should always use the constructor with the initial capacity, to minimize the duplication of the arrays as much as possible.

share|improve this answer

An important feature of a linked list (which I didn't read in another answer) is the concatenation of two lists. With an array this is O(n) (+ overhead of some reallocations) with a linked list this is only O(1) or O(2) ;-)

For the Java LinkedList this is not true. See Is there a fast concat method for linked list in Java?

share|improve this answer
1  
How is that? This may be true with linked list data structures but not a Java LinkList object. You can't just point a next from one list to the first node in the second list. The only way is to use addAll() which adds elements sequentially, though it is better than looping through and calling add() for each element. To do this quickly in O(1) you would need a compositing class (like org.apache.commons.collections.collection.CompositeCollection) but then this would work for any kind of List/Collection. – Kevin Brock Mar 23 '10 at 0:42
yes, true. I edited the answer accordingly. but see this answer for 'how' to do it with LinkedList: stackoverflow.com/questions/2494031/… – Karussell Mar 23 '10 at 12:47

Here is the big O notation in both ArrayList and LinkedList and also CopyOnWrite-ArrayList
ArrayList
get --> O(1)
add --> O(1)
contains --> O(n)
next --> O(1)
remove --> O(n)
iterator.remove --> O(n)


LinkedList
get --> O(n)
add --> O(1)
contains --> O(n)
next --> O(1)
remove --> O(1)
iterator.remove --> O(1)


CopyOnWrite-ArrayList
get --> O(1)
add --> O(n)
contains --> O(n)
next --> O(1)
remove --> O(n)
iterator.remove --> O(n)


Based on these you have to decide what to choose :)

share|improve this answer
1  
>>>> ArrayList add --> O(1) <- not tru. In some cases ArrayList will have to grow to add one more element – kachanov Feb 8 at 0:54

It depends upon what operations you will be doing more on the List.

ArrayList is faster to access an indexed value. It is much worse when inserting or deleting objects.

To find out more, read any article that talks about the difference betwen arrays and linked lists.

share|improve this answer
To find out more do not read, just write the code. and you will find out that ArrayList implementation is faster then LinkedList in insertion and deletion. – kachanov May 18 '12 at 2:53

When should I use LinkedList? When working with stacks mostly, or when working with buffers. When should I use ArrayList? In my opinion NEVER, you can implement array list with a HashTable and with linked list, then you get:

  • Random access O(1),
  • Insert O(1),
  • Remove O(1)

Plus you can use String keys for indexing.

It seems like a perfect solution, and in most of the cases it is, except one exclusion: HashTable takes a lot of disc space, so when you need to manage 1,000,000 elements list it can become a thing that matters. This can happen in server implementations, in clients it is rarely the case.

share|improve this answer

I know this is an old post, but I honestly can't believe nobody mentioned that LinkedList implements Deque. Just look at the methods in Deque (and Queue); if you want a fair comparison, try running LinkedList against ArrayDeque and do a feature-for-feature comparison.

share|improve this answer

get(i) arraylist faster than linkedList because arraylist:Resizable-array implementation of the List interface linkedlist:Doubly-linked list implementation of the List and Deque interfaces, Operations that index into the list will traverse the list from the beginning or the end, whichever is closer to the specified index.

share|improve this answer

Generally speaking, if you have to frequently insert or delete elements from a list(especially in the middle of a list), it is better to use LinkedList. On the other hand, if you want to frequently get an element by index from a list, ArrayList would be a better choice. If you want to know more detail, I suggest you find a book about data structure. It should be a necessery part of any data structure book.

share|improve this answer

protected by Bala R May 1 '11 at 3:20

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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