vote up 3 vote down star

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.

flag

6 Answers

vote up 2 vote down

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|flag
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
vote up 5 vote down

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|flag
vote up 3 vote down
List<E> list = new ArrayList<E>(); // or choose any other list implementation
// do whatever
Collections.sort(list);

Is the easiest if you need to create the list in one shot

link|flag
vote up 6 vote down

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|flag
vote up 4 vote down

You want the SortedSet implementations, namely TreeSet.

link|flag
Not necessarily; sets cannot have duplicate values. It depends on the OP's requirements. – Zach Langley Jan 6 '09 at 13:20
vote up 7 vote down

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|flag

Your Answer

Get an OpenID
or

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