Home | History | Annotate | Download | only in mergesort

Lines Matching refs:high

68         private final int high;
76 * @param high the non-inclusive high element to sort to
78 protected MergeSortTask(int[] array, int low, int high) {
81 this.high = high;
86 if (high - low <= THRESHOLD) {
87 Arrays.sort(array, low, high);
89 int middle = low + ((high - low) >> 1);
91 invokeAll(new MergeSortTask(array, low, middle), new MergeSortTask(array, middle, high));
98 * Merges the two sorted arrays this.low, middle - 1 and middle, this.high - 1
105 int[] copy = new int[high - low];
108 int copyHigh = high - low;
111 for (int i = low, p = copyLow, q = copyMiddle; i < high; i++) {