|
| 1 | +package ch_23; |
| 2 | + |
| 3 | +import java.util.Arrays; |
| 4 | +import java.util.Comparator; |
| 5 | + |
| 6 | +/** |
| 7 | + * 23.2 (Generic merge sort) Write the following two generic methods using merge sort. |
| 8 | + * The first method sorts the elements using the Comparable interface and the |
| 9 | + * second uses the Comparator interface. |
| 10 | + * public static <E extends Comparable<E>> |
| 11 | + * void mergeSort(E[] list) |
| 12 | + * public static <E> void mergeSort(E[] list, |
| 13 | + * Comparator<? super E> comparator) |
| 14 | + */ |
| 15 | +public class Exercise23_02 { |
| 16 | + public static void main(String[] args) { |
| 17 | + Integer[] arr = new Integer[]{23, 25, 7, 14, 85, 65}; |
| 18 | + mergeSort(arr); |
| 19 | + System.out.println(Arrays.toString(arr)); |
| 20 | + |
| 21 | + Integer[] arr2 = new Integer[]{3, 2, 7, 4, 8, 6, 1, 7}; |
| 22 | + mergeSort(arr2, Integer::compareTo); |
| 23 | + System.out.println(Arrays.toString(arr2)); |
| 24 | + |
| 25 | + } |
| 26 | + |
| 27 | + public static <E> void mergeSort(E[] list, |
| 28 | + Comparator<? super E> comparator) { |
| 29 | + if (list.length > 1) { |
| 30 | + E[] firstHalf = Arrays.copyOf(list, list.length / 2); |
| 31 | + System.arraycopy(list, 0, firstHalf, 0, list.length / 2); |
| 32 | + mergeSort(firstHalf, comparator); |
| 33 | + |
| 34 | + int secondHalfLength = list.length - list.length / 2; |
| 35 | + E[] secondHalf = Arrays.copyOf(list, secondHalfLength); |
| 36 | + System.arraycopy(list, list.length / 2, |
| 37 | + secondHalf, 0, secondHalfLength); |
| 38 | + mergeSort(secondHalf, comparator); |
| 39 | + |
| 40 | + int current1, current2, current3; |
| 41 | + current1 = current2 = current3 = 0; |
| 42 | + |
| 43 | + while (current1 < firstHalf.length && current2 < secondHalf.length) { |
| 44 | + if (comparator.compare(firstHalf[current1], secondHalf[current2]) < 0) |
| 45 | + list[current3++] = firstHalf[current1++]; |
| 46 | + else |
| 47 | + list[current3++] = secondHalf[current2++]; |
| 48 | + } |
| 49 | + |
| 50 | + while (current1 < firstHalf.length) |
| 51 | + list[current3++] = firstHalf[current1++]; |
| 52 | + |
| 53 | + while (current2 < secondHalf.length) |
| 54 | + list[current3++] = secondHalf[current2++]; |
| 55 | + } |
| 56 | + } |
| 57 | + |
| 58 | + |
| 59 | + public static <E extends Comparable<E>> void mergeSort(E[] list) { |
| 60 | + if (list.length > 1) { |
| 61 | + |
| 62 | + E[] firstHalf = Arrays.copyOf(list, list.length / 2); |
| 63 | + System.arraycopy(list, 0, firstHalf, 0, list.length / 2); |
| 64 | + mergeSort(firstHalf); |
| 65 | + |
| 66 | + int secondHalfLength = list.length - list.length / 2; |
| 67 | + E[] secondHalf = Arrays.copyOf(list, secondHalfLength); |
| 68 | + System.arraycopy(list, list.length / 2, |
| 69 | + secondHalf, 0, secondHalfLength); |
| 70 | + mergeSort(secondHalf); |
| 71 | + |
| 72 | + int current1, current2, current3; |
| 73 | + current1 = current2 = current3 = 0; |
| 74 | + |
| 75 | + while (current1 < firstHalf.length && current2 < secondHalf.length) { |
| 76 | + if (firstHalf[current1].compareTo(secondHalf[current2]) < 0) |
| 77 | + list[current3++] = firstHalf[current1++]; |
| 78 | + else |
| 79 | + list[current3++] = secondHalf[current2++]; |
| 80 | + } |
| 81 | + |
| 82 | + while (current1 < firstHalf.length) |
| 83 | + list[current3++] = firstHalf[current1++]; |
| 84 | + |
| 85 | + while (current2 < secondHalf.length) |
| 86 | + list[current3++] = secondHalf[current2++]; |
| 87 | + } |
| 88 | + } |
| 89 | + |
| 90 | +} |
0 commit comments