I have a program I ported from C to Java. Both apps use quicksort to order some partitioned data (genomic coordinates).
The Java version runs fast, but I\'d like to get
Can't you use the sort functions that are included in the Java library?
You could at least look at the speed difference between the two sorting functions.