vote up 1 vote down star
1

In Java, I have a set, and I want to turn it into a sorted list. Is there a method in the collections package that will do this for me?

flag

4 Answers

vote up 10 vote down check

The answer provided by the OP is not the best. It is inefficient, as it creates a new List and an unnecessary new array. Also, it raises "unchecked" warnings because of the type safety issues around generic arrays.

Instead, use something like this:

public static
<T extends Comparable<? super T>> List<T> asSortedList(Collection<T> c) {
  List<T> list = new ArrayList<T>(c);
  java.util.Collections.sort(list);
  return list;
}
link|flag
Thanks! That SuppressWarnings always bothered me. – Jeremy Stein Apr 13 at 18:42
vote up 4 vote down

...you answered your own question 38 seconds after you had asked it?

List myList = new ArrayList(collection); Collections.sort(myList); should do the trick however. Add flavour with Generics where applicable.

link|flag
I had a useful snippet I wanted to donate to the community. When I searched for the information, I couldn't find it. I was trying to make the next person's job easier. stackoverflow.com/questions/18557/… – Jeremy Stein Apr 11 at 15:46
Yeah, sure, but that link you provided is actually talking about a real questions (i.e. those for which don't have the answer, then find it). Your question here was only to give the answer... I could actually enter hundreds of questions and answer myself; that's not the point! – Seb Apr 11 at 16:10
@Seb: I disagree. I don't see anything wrong with this question. It obviously wasn't an extremely simple question, and now he knows a better way than he did before! – mmyers Apr 11 at 16:56
It was a real question, but I found the answer myself after Google came up short. Stackoverflow didn't exist at the time. I had it posted on my website and it helped someone else, so I thought it might be useful here. – Jeremy Stein Apr 13 at 18:40
vote up 4 vote down

sorted set:
return new TreeSet(setIWantSorted)

link|flag
This was my first thought, but the asker wanted a List – Alex B Apr 11 at 15:34
@Alex: This approach can still be used; return new ArrayList(new TreeSet(setIWantSorted)) – Jonik Apr 11 at 16:14
vote up 1 vote down

There's no single method to do that. Use this:

@SuppressWarnings("unchecked")
public static <T extends Comparable> List<T> asSortedList(Collection<T> collection) {
  T[] array = collection.toArray(
    (T[])new Comparable[collection.size()]);
  Arrays.sort(array);
  return Arrays.asList(array);
}
link|flag
There is also a Collections.sort function, but I think it does the same thing. +1 anyways. – CookieOfFortune Apr 11 at 15:30
Collections.sort takes a list as a parameter. – Jeremy Stein Apr 11 at 15:47

Your Answer

Get an OpenID
or

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