I need to sort an array of ints using a custom comparator, but Java's library doesn't provide a sort function for ints with comparators (comparators can be used only with objects). Is there any easy way to do this?
|
If you can't change the type of your input array the following will work:
This uses |
|||||||
|
|
By transforming your int array into an Integer one and then using |
|||
|
|
|
Here is a helper method to do the job. First of all you'll need a new Comparator interface, as Comparator doesn't support primitives:
(You could of course do it with autoboxing / unboxing but I won't go there, that's ugly) Then, here's a helper method to sort an int array using this comparator:
And here is some client code. A stupid comparator that sorts all numbers that consist only of the digit '9' to the front (again sorted by size) and then the rest (for whatever good that is):
Output:
The sort code was taken from Arrays.sort(int[]), and I only used the version that is optimized for tiny arrays. For a real implementation you'd probably want to look at the source code of the internal method |
||||
|
|
|
I tried maximum to use the comparator with primitive type itself. At-last i concluded that there is no way to cheat the comparator.This is my implementation.
@Roman: I can't say that this is a good example but since you asked this is what came to my mind. Suppose in an array you want to sort number's just based on their absolute value.
Another example can be like you want to sort only numbers greater than 100.It actually depends on the situation.I can't think of any more situations.Maybe Alexandru can give more examples since he say's he want's to use a comparator for int array. |
|||||||||||
|
ints with a custom comparator! – HRJ Feb 9 '12 at 13:41