public class Merge extends Object
For additional documentation, see Section 2.2 of
Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne.
For an optimized version, see MergeX.
| Modifier and Type | Method and Description |
|---|---|
static int[] |
indexSort(Comparable[] a)
Returns a permutation that gives the elements in the array in ascending order.
|
static void |
main(String[] args)
Reads in a sequence of strings from standard input; mergesorts them;
and prints them to standard output in ascending order.
|
static void |
sort(Comparable[] a)
Rearranges the array in ascending order, using the natural order.
|
public static void sort(Comparable[] a)
a - the array to be sortedpublic static int[] indexSort(Comparable[] a)
a - the arraypublic static void main(String[] args)
Copyright © 2014. All Rights Reserved.