提交 26d7eb12 authored 作者: Thomas Mueller's avatar Thomas Mueller

Partial sort

上级 c662be41
......@@ -447,7 +447,7 @@ public class Utils {
public static <X> void sortTopN(X[] array, int offset, int limit,
Comparator<? super X> comp) {
partitionTopN(array, offset, limit, comp);
Arrays.sort(array, offset, Math.min(offset + limit, array.length), comp);
Arrays.sort(array, offset, (int) Math.min((long) offset + limit, array.length), comp);
}
/**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论