Home | History | Annotate | Download | only in util

Lines Matching refs:high

313      * @param high Index of end element
316 public static void msort(Object[] src, Object[] dest, int low, int high,
318 if(low < high) {
319 int center = (low + high) / 2;
321 msort(src, dest, center + 1, high, comp);
322 merge(src, dest, low, center + 1, high, comp);
327 int low, int middle, int high, Comparator comp) {
330 int numElements = high - low + 1;
332 while (low <= leftEnd && middle <= high) {
344 while (middle <= high) {
348 for (int i = 0; i < numElements; i++, high--) {
349 src[high] = dest[high];