Priority Queue Package

A priority queue is a container that stores elements which have keys which can be compared. See "Introduction to Algorithms" by Cormen, Leiserson, Rivest and Stein for a discussion of priority queues.

This package provides priority queues implemented with binary heaps and an approximate priority queue implemented with a cell array. Include the file priority_queue.h to use them. Most of the data structures in this package assume that the key can be determined from the element. Here are some examples of this:

You specify how to obtain the key from the element by specifying an appropriate functor as a template parameter to the priority queue.

Priority queues have the following functionality:

Priority queue with dynamic keys have the additional function: decrease( e ). If the key of e has changed, call decrease( e ) to adjust the position of the element in the queue. (Here we assume that the key can be determined from the element.)

This package has two priority queues designed for static keys. That is, while an element is in the queue, its key does not change. Both implementations use the STL heap utility functions.

The ads::PriorityQueueBinaryHeapDynamicKeys class is designed for dynamic keys. It does not use the STL heap utility functions. To use this class, you must store handles to the heap elements in some other data structure and provide a functor which takes an element and returns a reference to the handle to that element. ads::HeapHandleArray is an example of a such a functor.

ads::PriorityQueueBinaryHeapArray is a priority queue with dynamic keys that is designed for storing handles into an array.

ads::PriorityQueueCellArray is an approximate priority queue with static keys. It cell sorts the elements by their key. Thus the keys must be numeric. Each cell is a container with elements whose keys are in a certain range. The interface is a little different than that of a regular priority queue.

Generated on Thu Jun 30 02:14:51 2016 for Algorithms and Data Structures Package by  doxygen 1.6.3