#include "FCHelpingAlgorithms.h"
Go to the source code of this file.
Classes | |
| class | PriorityQueueElement< Data > |
| A priority queue element. More... | |
| class | PriorityQueue< Data > |
| A templated priority queue. More... | |
Defines | |
| #define | PQ_PARENT_INDEX(i) ((i)>>1) |
| The parent is always given by index/2. | |
| #define | PQ_FIRST_ENTRY (1) |
| The first enry in the queue. | |
| #define | PQ_LEFT_CHILD_INDEX(i) ((i)<<1) |
| Left children are at index *2. | |
| #define | PQ_RIGHT_CHILD_INDEX(i) (((i)<<)+1) |
| Right children are at (index * 2) +1. | |
Definition in file PriorityQueue.h.
1.4.4