| MaxPQKey Constructor |
| Name | Description | |
|---|---|---|
| MaxPQKey |
Initializes an empty priority queue. | |
| MaxPQKey(ComparerKey) |
Initializes an empty priority queue using the given comparator. | |
| MaxPQKey(Int32) |
Initializes an empty priority queue with the given initial capacity. | |
| MaxPQKey(Key) |
Initializes a priority queue from the array of keys.
Takes time proportional to the number of keys, using sink-based heap construction. | |
| MaxPQKey(Int32, ComparerKey) |
Initializes an empty priority queue with the given initial capacity,
using the given comparator. |