public class Heap extends Object
For additional documentation, see Section 2.4 of Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne.
| Modifier and Type | Method and Description |
|---|---|
static void |
main(String[] args)
Reads in a sequence of strings from standard input; heapsorts them;
and prints them to standard output in ascending order.
|
static void |
sort(Comparable[] pq)
Rearranges the array in ascending order, using the natural order.
|
public static void sort(Comparable[] pq)
pq - the array to be sortedpublic static void main(String[] args)
Copyright © 2014. All Rights Reserved.