Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to sort heterogeneous elements in a array-list? For example,

ArrayList l1 = new ArrayList(); 
l1.add(1); 
l1.add("hi"); 
l1.add(1.0f); 

Now how to sort this array-list?``

share|improve this question
1  
How do you want them sorted? – aioobe Aug 18 '11 at 6:46

3 Answers

You would have to implement your own Comparator which compares the least upper bound of all involved types. In this case, Object.

Related question (from yesterday):

share|improve this answer

Define computable sorting rules. Then implement those rules in a class that implements Comparator and use

Collections.sort(l1, myComparator);  // myComparator is an instance of the class
                                     // you just implemented
share|improve this answer

It depends on how you want them sorted. You could split the list up into new ArrayLists with a defined type, sort each one of them then concatenate them?

Something like: (pseudocode)

ArrayList<Integer> intList = new ArrayList<Integer>();
ArrayList<Integer> stringList = new ArrayList<Integer>();
// ...etc

for (Object o : list) {
  if (o.getClass().equals(Integer.TYPE))
    intList.add(o);
  else if (o.getClass().equals(String.class))
    stringList.add(o);
  // ...etc
}

sort(intList);
sort(stringList);
// ...etc

concatenate(intList, stringList, ...);

That's what I'd think you do anyway.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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