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.
|
| ||||
|
feedback
|
|
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 The difference with a | |||||||||||||||||||||
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 | |||||
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. | |||
|
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. | |||||||
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. | |||
|
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. | |||||
feedback
|
|
| |||||
feedback
|