Java performance tips

前端 未结 14 1575
傲寒
傲寒 2021-02-01 20:04

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

14条回答
  •  借酒劲吻你
    2021-02-01 20:55

    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.

提交回复
热议问题