| Author |
Flexibly sorting primitive arrays
|
steve souza
Ranch Hand
Joined: Jun 26, 2002
Posts: 852
|
|
|
Is there a way to sort an int[] in an order other than ascending or descending. For example if the array had values 1-9, maybe soring in even/odd order (2,4,6,8,1,3,5,7,9). With Object[] you could do this with a Comparator. Can it be done with primitives without first converting the primitive array to an object array?
|
http://www.jamonapi.com/ - a fast, free open source performance tuning api.
JavaRanch Performance FAQ
|
 |
Bill Cruise
Ranch Hand
Joined: Jun 01, 2007
Posts: 148
|
|
|
Have you tried it with a Comparator? I think autoboxing might help you out here. If that doesn't work you're stuck rolling your own.
|
 |
 |
|
|
subject: Flexibly sorting primitive arrays
|
|
|