- main(String[]) - Static method in class mergesort.MergeSort
-
Assigns random values to each element of the integer array, displays
the array of values, sorts the array (calls the merge sort) and displays
the array again.
- mergesort - package mergesort
-
- MergeSort - Class in mergesort
-
Demonstration of the Merge Sort recursive algorithm.
- MergeSort() - Constructor for class mergesort.MergeSort
-
- mergeSort(int, int) - Static method in class mergesort.MergeSort
-
If the sub-array is equal to or more than one element, split the array into
two and call the recursive mergeSort(int, int) method.