What is the fastest list implementation (in java) in a scenario where the list will be created one element at a time then at a later point be read one element at a time? The reads will be done with an iterator and then the list will then be destroyed.
I know that the Big O notation for get is O(1) and add is O(1) for an ArrayList, while LinkedList is O(n) for get and O(1) for add. Does the iterator behave with the same Big O notation?
|
|
|
|||
|
|
|
|
It depends whether you know the maximum size of each list up front. If you do, use ArrayList; it will certainly be faster. Otherwise, you'll probably have to profile. While access to the ArrayList is O(1), creating it is not as simple, because of dynamic resizing. Another point to consider is that the space-time trade-off is not clear cut. Each Java Object has quite a bit of overhead. While an ArrayList may waste some space on surplus slots, each slot is only 4 bytes (or 8 on a 64-bit JVM). Each element of a LinkedList is probably about 50 bytes (perhaps 100 in a 64-bit JVM). So you have to have quite a few wasted slots in an ArrayList before a LinkedList actually wins its presumed space advantage. Locality of reference is also a factor, and ArrayList is preferable there too. In practice, I almost always use ArrayList. |
|||
|
|
|
|
Iterating through a linked list is O(1) per element. The Big O runtime for each option is the same. Probably the ArrayList will be faster because of better memory locality, but you'd have to measure it to know for sure. Pick whatever makes the code clearest. |
||
|
|
|
|
First Thoughts:
Of course, as everyone else is mentioning, do performance testing, prove your new solution is an improvement. |
||||||||||
|
|
|
I suggest benchmarking it. It's one thing reading the API, but until you try it for yourself, it'd academic. Should be fair easy to test, just make sure you do meaningful operations, or hotspot will out-smart you and optimise it all to a NO-OP :) |
||
|
|
|
|
Note that iterating through an instance of
This is absolutely horrible in terms of efficiency due to the fact that the list must be traversed up to
The above code is O(n), since the list is traversed statefully in-place. To avoid all of the above hassle, just use |
||
|
|
|
|
You almost certainly want an ArrayList. Both adding and reading are "amortized constant time" (i.e. O(1)) as specified in the documentation (note that this is true even if the list has to increase it's size - it's designed like that see http://java.sun.com/j2se/1.5.0/docs/api/java/util/ArrayList.html ). If you know roughly the number of objects you will be storing then even the ArrayList size increase is eliminated. Adding to the end of a linked list is O(1), but the constant multiplier is larger than ArrayList (since you are usually creating a node object every time). Reading is virtually identical to the ArrayList if you are using an iterator. It's a good rule to always use the simplest structure you can, unless there is a good reason not to. Here there is no such reason. The exact quote from the documentation for ArrayList is: "The add operation runs in amortized constant time, that is, adding n elements requires O(n) time. All of the other operations run in linear time (roughly speaking). The constant factor is low compared to that for the LinkedList implementation." |
||||||||||
|
