深入学习java源码之 ()与()
Comparator接口
能对不同类型的对象进行排序(当然排序依据还是基本类型),也不用自己实现排序算法,用起来很方便。
对任意类型集合对象进行整体排序,排序时将此接口的实现传递给方法或者方法排序。
实现int compare(T o1, T o2);
方法,返回正数,零,负数各代表大于,等于,小于。
public class Test {
private final class CompareName implements Comparator<Milan> {
boolean is_Ascend;
public CompareName(boolean b) {
// TODO Auto-generated constructor stub
is_Ascend = b;
}
@Override
public int compare(Milan o1, Milan o2) {
// TODO Auto-generated method stub
if (is_Ascend)
return o1.p_Name.compareTo(o2.p_Name);
else
return o2.p_Name.compareTo(o1.p_Name);
}
}
private final class CompareId implements Comparator<Milan> {
boolean is_Ascend;
public CompareId(boolean b) {
// TODO Auto-generated constructor stub
is_Ascend = b;
}
@Override
public int compare(Milan o1, Milan o2) {
// TODO Auto-generated method stub
int a, b;
if (is_Ascend) {
a = o1.p_Id;
b = o2.p_Id;
} else {
a = o2.p_Id;
b = o1.p_Id;
}
if (a > b)
return 1;
else if (a == b)
return 0;
else
return -1;
}
}
public static void main(String[] args) {
Test t = new Test();
Milan p1 = new Milan(1, "Dida");
Milan p2 = new Milan(2, "Cafu");
Milan p3 = new Milan(3, "Maldini");
Milan P4 = new Milan(6, "Baresi");
Milan p5 = new Milan(9, "Inzaghi");
Milan P6 = new Milan(10, "Costa");
List<Milan> mList = new ArrayList<Milan>();
(p1);
(P6);
(P4);
(p2);
(p5);
(p3);
("初始顺序");
("姓名 | 号码");
for (Milan p : mList) {
(p.p_Name + " | " + p.p_Id);
}
();
("对号码降序");
("姓名 | 号码");
(mList, CompareId(false));
for (Milan p : mList) {
(p.p_Name + " | " + p.p_Id);
}
();
("对姓名升序");
("姓名 | 号码");
(mList, CompareName(true));
for (Milan p : mList) {
(p.p_Name + " | " + p.p_Id);
}
}
}
Comparator<? super E> c
构造器需要一个Comparator类来比较两个元素,以E为String类时为例,此时的Comparator可以是Comparator<String>,也可以是Comparator<Object>,但Comparator<Integer>就不行,这样就保证了传给构造器的Comparator是可以进行E元素的比较的。
public static <T> void sort(T[] a, Comparator<? super T> c) {
}
---------------------
import ;
public class StringCompartor implements Comparator<String> { //用来封装一个排序规则的方法
// static <T> void
// sort(T[] a, Comparator<? super T> c);
// 根据指定比较器产生的顺序对指定对象数组进行排序
@Override
public int compare(String arg0, String arg1) {//接收两个参数
// TODO Auto-generated method stub
// compareTo(String anotherString)
// 按字典顺序比较两个字符串。
return (arg1);//返回一个排序规则
}
---------------------
String demos[] = { "hello", "New", "test", "****" };
//
// static <T> void
// sort(T[] a, Comparator<? super T> c)
// 根据指定比较器产生的顺序对指定对象数组进行排序。
(demos, new StringCompartor()); //调用已经封装好的排序规则进行排序 ,符合面向对象的编程思想
for(String demo:demos){
(demo);
}
---------------------
的max方法用于获得一个容器中的最大值,这个函数头可以这样写:
public static <T extends Comparable<T>> T max(Collection<T> coll)
这样就限定T为能和自己比较的类,过于严格
public static <T extends Object & Comparable<? super T>> T max(Collection<? extends T> coll) {
Iterator<? extends T> i = ();
T candidate = ();
while(()) {
T next = ();
if ((candidate) > 0)
candidate = next;
}
return candidate;
}
Modifier and Type | Method and Description |
---|---|
static void |
parallelPrefix(double[] array, DoubleBinaryOperator op) 使用提供的功能,并行地计算给定阵列的每个元素。 |
static void |
parallelPrefix(double[] array, int fromIndex, int toIndex, DoubleBinaryOperator op) 对于数组的给定子范围执行 parallelPrefix(double[], DoubleBinaryOperator) 。 |
static void |
parallelPrefix(int[] array, IntBinaryOperator op) 使用提供的功能,并行地计算给定阵列的每个元素。 |
static void |
parallelPrefix(int[] array, int fromIndex, int toIndex, IntBinaryOperator op) 对于数组的给定子范围执行 parallelPrefix(int[], IntBinaryOperator) 。 |
static void |
parallelPrefix(long[] array, int fromIndex, int toIndex, LongBinaryOperator op) 对于数组的给定子范围执行 parallelPrefix(long[], LongBinaryOperator) 。 |
static void |
parallelPrefix(long[] array, LongBinaryOperator op) 使用提供的功能,并行地计算给定阵列的每个元素。 |
static <T> void |
parallelPrefix(T[] array, BinaryOperator<T> op) 使用提供的功能,并行地计算给定阵列的每个元素。 |
static <T> void |
parallelPrefix(T[] array, int fromIndex, int toIndex, BinaryOperator<T> op) 对于数组的给定子范围执行 parallelPrefix(Object[], BinaryOperator) 。 |
static void |
parallelSetAll(double[] array, IntToDoubleFunction generator) 使用提供的生成函数来并行设置指定数组的所有元素来计算每个元素。 |
static void |
parallelSetAll(int[] array, IntUnaryOperator generator) 使用提供的生成函数来并行设置指定数组的所有元素来计算每个元素。 |
static void |
parallelSetAll(long[] array, IntToLongFunction generator) 使用提供的生成函数来并行设置指定数组的所有元素来计算每个元素。 |
static <T> void |
parallelSetAll(T[] array, IntFunction<? extends T> generator) 使用提供的生成函数来并行设置指定数组的所有元素来计算每个元素。 |
static void |
parallelSort(byte[] a) 按照数字顺序排列指定的数组。 |
static void |
parallelSort(byte[] a, int fromIndex, int toIndex) 按照数字顺序排列数组的指定范围。 |
static void |
parallelSort(char[] a) 按照数字顺序排列指定的数组。 |
static void |
parallelSort(char[] a, int fromIndex, int toIndex) 按照数字顺序排列数组的指定范围。 |
static void |
parallelSort(double[] a) 按照数字顺序排列指定的数组。 |
static void |
parallelSort(double[] a, int fromIndex, int toIndex) 按照数字顺序排列数组的指定范围。 |
static void |
parallelSort(float[] a) 按照数字顺序排列指定的数组。 |
static void |
parallelSort(float[] a, int fromIndex, int toIndex) 按照数字顺序排列数组的指定范围。 |
static void |
parallelSort(int[] a) 按照数字顺序排列指定的数组。 |
static void |
parallelSort(int[] a, int fromIndex, int toIndex) 按照数字顺序排列数组的指定范围。 |
static void |
parallelSort(long[] a) 按照数字顺序排列指定的数组。 |
static void |
parallelSort(long[] a, int fromIndex, int toIndex) 按照数字顺序排列数组的指定范围。 |
static void |
parallelSort(short[] a) 按照数字顺序排列指定的数组。 |
static void |
parallelSort(short[] a, int fromIndex, int toIndex) 按照数字顺序排列数组的指定范围。 |
static <T extends Comparable<? super T>> |
parallelSort(T[] a) 对指定对象升序排列的阵列,根据natural ordering的元素。 |
static <T> void |
parallelSort(T[] a, Comparator<? super T> cmp) 根据指定的比较器引发的顺序对指定的对象数组进行排序。 |
static <T extends Comparable<? super T>> |
parallelSort(T[] a, int fromIndex, int toIndex) 对指定对象升序排列的数组的指定范围内,根据natural ordering的元素。 |
static <T> void |
parallelSort(T[] a, int fromIndex, int toIndex, Comparator<? super T> cmp) 根据指定的比较器引发的顺序对指定的对象数组的指定范围进行排序。 |
static void |
sort(byte[] a) 按照数字顺序排列指定的数组。 |
static void |
sort(byte[] a, int fromIndex, int toIndex) 按升序排列数组的指定范围。 |
static void |
sort(char[] a) 按照数字顺序排列指定的数组。 |
static void |
sort(char[] a, int fromIndex, int toIndex) 按升序排列数组的指定范围。 |
static void |
sort(double[] a) 按照数字顺序排列指定的数组。 |
static void |
sort(double[] a, int fromIndex, int toIndex) 按升序排列数组的指定范围。 |
static void |
sort(float[] a) 按照数字顺序排列指定的数组。 |
static void |
sort(float[] a, int fromIndex, int toIndex) 按升序排列数组的指定范围。 |
static void |
sort(int[] a) 按照数字顺序排列指定的数组。 |
static void |
sort(int[] a, int fromIndex, int toIndex) 按升序排列数组的指定范围。 |
static void |
sort(long[] a) 按照数字顺序排列指定的数组。 |
static void |
sort(long[] a, int fromIndex, int toIndex) 按升序排列数组的指定范围。 |
static void |
sort(Object[] a) 对指定对象升序排列的阵列,根据natural ordering的元素。 |
static void |
sort(Object[] a, int fromIndex, int toIndex) 对指定对象升序排列的数组的指定范围内,根据natural ordering的元素。 |
static void |
sort(short[] a) 按照数字顺序排列指定的数组。 |
static void |
sort(short[] a, int fromIndex, int toIndex) 按升序排列数组的指定范围。 |
static <T> void |
sort(T[] a, Comparator<? super T> c) 根据指定的比较器引发的顺序对指定的对象数组进行排序。 |
static <T> void |
sort(T[] a, int fromIndex, int toIndex, Comparator<? super T> c) 根据指定的比较器引发的顺序对指定的对象数组的指定范围进行排序。 |
java源码
package ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
public class Arrays {
private static final int MIN_ARRAY_SORT_GRAN = 1 << 13;
// Suppresses default constructor, ensuring non-instantiability.
private Arrays() {}
static final class NaturalOrder implements Comparator<Object> {
@SuppressWarnings("unchecked")
public int compare(Object first, Object second) {
return ((Comparable<Object>)first).compareTo(second);
}
static final NaturalOrder INSTANCE = new NaturalOrder();
}
private static void rangeCheck(int arrayLength, int fromIndex, int toIndex) {
if (fromIndex > toIndex) {
throw new IllegalArgumentException(
"fromIndex(" + fromIndex + ") > toIndex(" + toIndex + ")");
}
if (fromIndex < 0) {
throw new ArrayIndexOutOfBoundsException(fromIndex);
}
if (toIndex > arrayLength) {
throw new ArrayIndexOutOfBoundsException(toIndex);
}
}
public static void sort(int[] a) {
(a, 0, - 1, null, 0, 0);
}
public static void sort(int[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
(a, fromIndex, toIndex - 1, null, 0, 0);
}
public static void sort(long[] a) {
(a, 0, - 1, null, 0, 0);
}
public static void sort(long[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
(a, fromIndex, toIndex - 1, null, 0, 0);
}
public static void sort(short[] a) {
(a, 0, - 1, null, 0, 0);
}
public static void sort(short[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
(a, fromIndex, toIndex - 1, null, 0, 0);
}
public static void sort(char[] a) {
(a, 0, - 1, null, 0, 0);
}
public static void sort(char[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
(a, fromIndex, toIndex - 1, null, 0, 0);
}
public static void sort(byte[] a) {
(a, 0, - 1);
}
public static void sort(byte[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
(a, fromIndex, toIndex - 1);
}
public static void sort(float[] a) {
(a, 0, - 1, null, 0, 0);
}
public static void sort(float[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
(a, fromIndex, toIndex - 1, null, 0, 0);
}
public static void sort(double[] a) {
(a, 0, - 1, null, 0, 0);
}
public static void sort(double[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
(a, fromIndex, toIndex - 1, null, 0, 0);
}
public static void parallelSort(byte[] a) {
int n = , p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, 0, n - 1);
else
new
(null, a, new byte[n], 0, n, 0,
((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g).invoke();
}
public static void parallelSort(byte[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
int n = toIndex - fromIndex, p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, fromIndex, toIndex - 1);
else
new
(null, a, new byte[n], fromIndex, n, 0,
((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g).invoke();
}
public static void parallelSort(char[] a) {
int n = , p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, 0, n - 1, null, 0, 0);
else
new
(null, a, new char[n], 0, n, 0,
((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g).invoke();
}
public static void parallelSort(char[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
int n = toIndex - fromIndex, p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, fromIndex, toIndex - 1, null, 0, 0);
else
new
(null, a, new char[n], fromIndex, n, 0,
((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g).invoke();
}
public static void parallelSort(short[] a) {
int n = , p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, 0, n - 1, null, 0, 0);
else
new
(null, a, new short[n], 0, n, 0,
((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g).invoke();
}
public static void parallelSort(short[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
int n = toIndex - fromIndex, p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, fromIndex, toIndex - 1, null, 0, 0);
else
new
(null, a, new short[n], fromIndex, n, 0,
((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g).invoke();
}
public static void parallelSort(int[] a) {
int n = , p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, 0, n - 1, null, 0, 0);
else
new
(null, a, new int[n], 0, n, 0,
((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g).invoke();
}
public static void parallelSort(int[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
int n = toIndex - fromIndex, p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, fromIndex, toIndex - 1, null, 0, 0);
else
new
(null, a, new int[n], fromIndex, n, 0,
((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g).invoke();
}
public static void parallelSort(long[] a) {
int n = , p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, 0, n - 1, null, 0, 0);
else
new
(null, a, new long[n], 0, n, 0,
((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g).invoke();
}
public static void parallelSort(long[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
int n = toIndex - fromIndex, p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, fromIndex, toIndex - 1, null, 0, 0);
else
new
(null, a, new long[n], fromIndex, n, 0,
((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g).invoke();
}
public static void parallelSort(float[] a) {
int n = , p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, 0, n - 1, null, 0, 0);
else
new
(null, a, new float[n], 0, n, 0,
((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g).invoke();
}
public static void parallelSort(float[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
int n = toIndex - fromIndex, p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, fromIndex, toIndex - 1, null, 0, 0);
else
new
(null, a, new float[n], fromIndex, n, 0,
((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g).invoke();
}
public static void parallelSort(double[] a) {
int n = , p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, 0, n - 1, null, 0, 0);
else
new
(null, a, new double[n], 0, n, 0,
((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g).invoke();
}
public static void parallelSort(double[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
int n = toIndex - fromIndex, p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, fromIndex, toIndex - 1, null, 0, 0);
else
new
(null, a, new double[n], fromIndex, n, 0,
((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g).invoke();
}
@SuppressWarnings("unchecked")
public static <T extends Comparable<? super T>> void parallelSort(T[] a) {
int n = , p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, 0, n, , null, 0, 0);
else
new <T>
(null, a,
(T[])(().getComponentType(), n),
0, n, 0, ((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g, ).invoke();
}
@SuppressWarnings("unchecked")
public static <T extends Comparable<? super T>>
void parallelSort(T[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
int n = toIndex - fromIndex, p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, fromIndex, toIndex, , null, 0, 0);
else
new <T>
(null, a,
(T[])(().getComponentType(), n),
fromIndex, n, 0, ((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g, ).invoke();
}
@SuppressWarnings("unchecked")
public static <T> void parallelSort(T[] a, Comparator<? super T> cmp) {
if (cmp == null)
cmp = ;
int n = , p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, 0, n, cmp, null, 0, 0);
else
new <T>
(null, a,
(T[])(().getComponentType(), n),
0, n, 0, ((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g, cmp).invoke();
}
@SuppressWarnings("unchecked")
public static <T> void parallelSort(T[] a, int fromIndex, int toIndex,
Comparator<? super T> cmp) {
rangeCheck(, fromIndex, toIndex);
if (cmp == null)
cmp = ;
int n = toIndex - fromIndex, p, g;
if (n <= MIN_ARRAY_SORT_GRAN ||
(p = ()) == 1)
(a, fromIndex, toIndex, cmp, null, 0, 0);
else
new <T>
(null, a,
(T[])(().getComponentType(), n),
fromIndex, n, 0, ((g = n / (p << 2)) <= MIN_ARRAY_SORT_GRAN) ?
MIN_ARRAY_SORT_GRAN : g, cmp).invoke();
}
static final class LegacyMergeSort {
private static final boolean userRequested =
(
new (
"")).booleanValue();
}
public static void sort(Object[] a) {
if ()
legacyMergeSort(a);
else
(a, 0, , null, 0, 0);
}
/** To be removed in a future release. */
private static void legacyMergeSort(Object[] a) {
Object[] aux = ();
mergeSort(aux, a, 0, , 0);
}
public static void sort(Object[] a, int fromIndex, int toIndex) {
rangeCheck(, fromIndex, toIndex);
if ()
legacyMergeSort(a, fromIndex, toIndex);
else
(a, fromIndex, toIndex, null, 0, 0);
}
/** To be removed in a future release. */
private static void legacyMergeSort(Object[] a,
int fromIndex, int toIndex) {
Object[] aux = copyOfRange(a, fromIndex, toIndex);
mergeSort(aux, a, fromIndex, toIndex, -fromIndex);
}
private static final int INSERTIONSORT_THRESHOLD = 7;
@SuppressWarnings({"unchecked", "rawtypes"})
private static void mergeSort(Object[] src,
Object[] dest,
int low,
int high,
int off) {
int length = high - low;
// Insertion sort on smallest arrays
if (length < INSERTIONSORT_THRESHOLD) {
for (int i=low; i<high; i++)
for (int j=i; j>low &&
((Comparable) dest[j-1]).compareTo(dest[j])>0; j--)
swap(dest, j, j-1);
return;
}
// Recursively sort halves of dest into src
int destLow = low;
int destHigh = high;
low += off;
high += off;
int mid = (low + high) >>> 1;
mergeSort(dest, src, low, mid, -off);
mergeSort(dest, src, mid, high, -off);
// If list is already sorted, just copy from src to dest. This is an
// optimization that results in faster sorts for nearly ordered lists.
if (((Comparable)src[mid-1]).compareTo(src[mid]) <= 0) {
(src, low, dest, destLow, length);
return;
}
// Merge sorted halves (now in src) into dest
for(int i = destLow, p = low, q = mid; i < destHigh; i++) {
if (q >= high || p < mid && ((Comparable)src[p]).compareTo(src[q])<=0)
dest[i] = src[p++];
else
dest[i] = src[q++];
}
}
private static void swap(Object[] x, int a, int b) {
Object t = x[a];
x[a] = x[b];
x[b] = t;
}
public static <T> void sort(T[] a, Comparator<? super T> c) {
if (c == null) {
sort(a);
} else {
if ()
legacyMergeSort(a, c);
else
(a, 0, , c, null, 0, 0);
}
}
/** To be removed in a future release. */
private static <T> void legacyMergeSort(T[] a, Comparator<? super T> c) {
T[] aux = ();
if (c==null)
mergeSort(aux, a, 0, , 0);
else
mergeSort(aux, a, 0, , 0, c);
}
public static <T> void sort(T[] a, int fromIndex, int toIndex,
Comparator<? super T> c) {
if (c == null) {
sort(a, fromIndex, toIndex);
} else {
rangeCheck(, fromIndex, toIndex);
if ()
legacyMergeSort(a, fromIndex, toIndex, c);
else
(a, fromIndex, toIndex, c, null, 0, 0);
}
}
/** To be removed in a future release. */
private static <T> void legacyMergeSort(T[] a, int fromIndex, int toIndex,
Comparator<? super T> c) {
T[] aux = copyOfRange(a, fromIndex, toIndex);
if (c==null)
mergeSort(aux, a, fromIndex, toIndex, -fromIndex);
else
mergeSort(aux, a, fromIndex, toIndex, -fromIndex, c);
}
@SuppressWarnings({"rawtypes", "unchecked"})
private static void mergeSort(Object[] src,
Object[] dest,
int low, int high, int off,
Comparator c) {
int length = high - low;
// Insertion sort on smallest arrays
if (length < INSERTIONSORT_THRESHOLD) {
for (int i=low; i<high; i++)
for (int j=i; j>low && (dest[j-1], dest[j])>0; j--)
swap(dest, j, j-1);
return;
}
// Recursively sort halves of dest into src
int destLow = low;
int destHigh = high;
low += off;
high += off;
int mid = (low + high) >>> 1;
mergeSort(dest, src, low, mid, -off, c);
mergeSort(dest, src, mid, high, -off, c);
// If list is already sorted, just copy from src to dest. This is an
// optimization that results in faster sorts for nearly ordered lists.
if ((src[mid-1], src[mid]) <= 0) {
(src, low, dest, destLow, length);
return;
}
// Merge sorted halves (now in src) into dest
for(int i = destLow, p = low, q = mid; i < destHigh; i++) {
if (q >= high || p < mid && (src[p], src[q]) <= 0)
dest[i] = src[p++];
else
dest[i] = src[q++];
}
}
public static <T> void parallelPrefix(T[] array, BinaryOperator<T> op) {
(op);
if ( > 0)
new <>
(null, op, array, 0, ).invoke();
}
public static <T> void parallelPrefix(T[] array, int fromIndex,
int toIndex, BinaryOperator<T> op) {
(op);
rangeCheck(, fromIndex, toIndex);
if (fromIndex < toIndex)
new <>
(null, op, array, fromIndex, toIndex).invoke();
}
public static void parallelPrefix(long[] array, LongBinaryOperator op) {
(op);
if ( > 0)
new
(null, op, array, 0, ).invoke();
}
public static void parallelPrefix(long[] array, int fromIndex,
int toIndex, LongBinaryOperator op) {
(op);
rangeCheck(, fromIndex, toIndex);
if (fromIndex < toIndex)
new
(null, op, array, fromIndex, toIndex).invoke();
}
public static void parallelPrefix(double[] array, DoubleBinaryOperator op) {
(op);
if ( > 0)
new
(null, op, array, 0, ).invoke();
}
public static void parallelPrefix(double[] array, int fromIndex,
int toIndex, DoubleBinaryOperator op) {
(op);
rangeCheck(, fromIndex, toIndex);
if (fromIndex < toIndex)
new
(null, op, array, fromIndex, toIndex).invoke();
}
public static void parallelPrefix(int[] array, IntBinaryOperator op) {
(op);
if ( > 0)
new
(null, op, array, 0, ).invoke();
}
public static void parallelPrefix(int[] array, int fromIndex,
int toIndex, IntBinaryOperator op) {
(op);
rangeCheck(, fromIndex, toIndex);
if (fromIndex < toIndex)
new
(null, op, array, fromIndex, toIndex).invoke();
}
}