up vote 49 down vote favorite
9
share [g+] share [fb]

I'm a beginner in Java. Please suggest which collection(s) can/should be used for maintaining a sorted list in Java. I have tried Map and Set but they weren't what I was looking for.

link|improve this question
feedback

7 Answers

This comes very late, but there is a class in the JDK just for the purpose of having a sorted list. It is named (somewhat out of order with the other Sorted* interfaces) "java.util.PriorityQueue". It can sort either Comparable<?>s or using a Comparator.

The difference with a List sorted using Collections.sort(...) is that this will maintain order at all times, and have good insertion performance by using a heap data structure, where inserting in a sorted ArrayList will be O(n) (i.e., using binary search and move).

link|improve this answer
3  
imo this answer deserves more upvotes since it points out the only Collection that has the capability in JDK – nimcap Jul 2 '10 at 12:09
1  
But unlike a List, there is no random access, right? – Thilo Oct 27 '10 at 9:18
1  
@Thilo: Right, but since the elements' indexes change with every modification, it is probably not needed anyway – nimcap Oct 27 '10 at 11:23
21  
From the Javadoc: "The Iterator provided in method iterator() is not guaranteed to traverse the elements of the PriorityQueue in any particular order." – Christoffer Hammarström Mar 2 '11 at 14:37
3  
@giraff: a priority queue is just that, a data structure that is very efficient at keeping a priority queue. You can poll from the front and get the data items in sorted order. However heaps don't maintain a total order of elements internally (that's why they are so efficient), so there is no way of accessing elements in order without executing the poll operation. – Martin Probst Jul 1 '11 at 16:42
show 4 more comments
feedback

TreeMap and TreeSet will give you an iteration over the contents in sorted order. Or you could use an ArrayList and use Collections.sort() to sort it. All those classes are in java.util

link|improve this answer
4  
There are two major drawbacks to this though, the first being that a Set can not have duplicates. The second is that if you use a list and Collections.sort(), you tend to be constantly sorting huge lists and gives poor performance. Sure you can use a 'dirty' flag, but it's not quite the same. – Jeach Dec 6 '10 at 21:52
feedback

There are a few options. I'd suggest TreeSet if you don't want duplicates and the objects you're inserting are comparable.

You can also use the static methods of the Collections class to do this.

See http://java.sun.com/j2se/1.4.2/docs/api/java/util/Collections.html#sort(java.util.List) and http://java.sun.com/j2se/1.4.2/docs/api/java/util/TreeSet.html for more info.

link|improve this answer
feedback

If you want to maintain a sorted list which you will frequently modify (i.e. a structure which, in addition to being sorted, allows duplicates and whose elements can be efficiently referenced by index), then use an ArrayList but when you need to insert an element, always use Collections.binarySearch() to determine the index at which you add a given element. The latter method tells you the index you need to insert at to keep your list in sorted order.

link|improve this answer
2  
n inserts will be O(n^2). A TreeSet will give you cleaner code and O(n log n). OTOH, for infrequent modification binary search of an array will be faster and use less memory (so less GC overhead). – Tom Hawtin - tackline Jan 6 '09 at 13:45
To keep the code clean and still allow for duplicates it would be easy enough to create a SortedList class that inserts values in sorted order. – Mr. Shiny and New 安宇 Jan 6 '09 at 14:07
feedback

If you just want to sort a list, use any kind of List and use Collections.sort(). If you want to make sure elements in the list are unique and always sorted, use a SortedSet.

link|improve this answer
feedback

Use guava's TreeMultiset. Guava is a spectacular collections api.

guava: http://code.google.com/p/guava-libraries/

TreeMultiset: http://guava-libraries.googlecode.com/svn/tags/release02/javadoc/com/google/common/collect/TreeMultiset.html

One problem with providing an implementation of List that maintains sorted order is the promise made in the javadocs of the 'add' method.

link|improve this answer
Kudos for the multiset suggestion – darthtrevino May 26 '11 at 14:55
+1 for mentioning the requirement that a List always adds at the end. – Roland Illig Jun 27 '11 at 13:24
feedback

You want the SortedSet implementations, namely TreeSet.

link|improve this answer
4  
Not necessarily; sets cannot have duplicate values. It depends on the OP's requirements. – Zach Langley Jan 6 '09 at 13:20
feedback

Your Answer

 
or
required, but never shown