I want to use data structure that need sorted betweenwhiles. Size of the data structure will hardly be exceed 1000 items. Which one is better ArrayList or LinkedList ? Which sorting algorithm is better to use?
|
|
If you can use apache library then please have a look at TreeList (http://commons.apache.org/collections/api-3.1/org/apache/commons/collections/list/TreeList.html). It address your problem correctly. |
|||||||||
|
|
If you're going to be using
(Thanks for keeping me honest Ralph. Looks like I confused the implementations of sort and shuffle. They're close enough to the same thing right?) |
|||||||
|
|
Only 1000 items? Why do you care? I usually always use ArrayList unless I have specific need to do otherwise. Have a look at the source code. I think sorting is based on arrays anyway, if I remember correctly. |
|||||
|
|
Take a look at this and i am sure you will come up with a conclusion for yourself. Regards! |
|||||
|
|
If you are just sorting and not dynamically updating your sorted list, then either is fine and an array will be more memory efficient. Linked lists are really better if you want to maintain a sorted list. Inserting an object is fast into the middle of a linked list, but slow into an array. Arrays are better if you want to find an object in the middle. With an array, you can do a binary sort and find if a member is in the list in O(logN) time. With a linked list, you need to walk the entire list which is very slow. I guess which is better for your application depends on what you want to do with the list after it is sorted. |
|||||||
|
