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?``
|
|
You would have to implement your own Related question (from yesterday): |
|||
|
|
|
Define computable sorting rules. Then implement those rules in a class that implements
|
|||
|
|
|
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)
That's what I'd think you do anyway. |
|||
|
|