#include "priorityq-heap.h"Classes | |
| struct | PriorityQ |
Macros | |
| #define | pqDelete(pq, handle) __gl_pqSortDelete(pq,handle) |
| #define | pqDeletePriorityQ(pq) __gl_pqSortDeletePriorityQ(pq) |
| #define | pqExtractMin(pq) __gl_pqSortExtractMin(pq) |
| #define | PQhandle PQSortHandle |
| #define | pqInit(pq) __gl_pqSortInit(pq) |
| #define | pqInsert(pq, key) __gl_pqSortInsert(pq,key) |
| #define | pqIsEmpty(pq) __gl_pqSortIsEmpty(pq) |
| #define | PQkey PQSortKey |
| #define | pqMinimum(pq) __gl_pqSortMinimum(pq) |
| #define | pqNewPriorityQ(leq) __gl_pqSortNewPriorityQ(leq) |
| #define | PriorityQ PriorityQSort |
Typedefs | |
| typedef PQHeapHandle | PQhandle |
| typedef PQHeapKey | PQkey |
| typedef struct PriorityQ | PriorityQ |
Functions | |
| void | pqDelete (PriorityQ *pq, PQhandle handle) |
| void | pqDeletePriorityQ (PriorityQ *pq) |
| PQkey | pqExtractMin (PriorityQ *pq) |
| int | pqInit (PriorityQ *pq) |
| PQhandle | pqInsert (PriorityQ *pq, PQkey key) |
| int | pqIsEmpty (PriorityQ *pq) |
| PQkey | pqMinimum (PriorityQ *pq) |
| PriorityQ * | pqNewPriorityQ (int(*leq)(PQkey key1, PQkey key2)) |
| #define pqDelete | ( | pq, | |
| handle | |||
| ) | __gl_pqSortDelete(pq,handle) |
Definition at line 78 of file priorityq-sort.h.
| #define pqDeletePriorityQ | ( | pq | ) | __gl_pqSortDeletePriorityQ(pq) |
Definition at line 59 of file priorityq-sort.h.
| #define pqExtractMin | ( | pq | ) | __gl_pqSortExtractMin(pq) |
Definition at line 77 of file priorityq-sort.h.
| #define PQhandle PQSortHandle |
Definition at line 55 of file priorityq-sort.h.
| #define pqInit | ( | pq | ) | __gl_pqSortInit(pq) |
Definition at line 74 of file priorityq-sort.h.
| #define pqInsert | ( | pq, | |
| key | |||
| ) | __gl_pqSortInsert(pq,key) |
Definition at line 75 of file priorityq-sort.h.
| #define pqIsEmpty | ( | pq | ) | __gl_pqSortIsEmpty(pq) |
Definition at line 79 of file priorityq-sort.h.
| #define PQkey PQSortKey |
Definition at line 54 of file priorityq-sort.h.
| #define pqMinimum | ( | pq | ) | __gl_pqSortMinimum(pq) |
Definition at line 76 of file priorityq-sort.h.
| #define pqNewPriorityQ | ( | leq | ) | __gl_pqSortNewPriorityQ(leq) |
Definition at line 58 of file priorityq-sort.h.
| #define PriorityQ PriorityQSort |
Definition at line 56 of file priorityq-sort.h.
| typedef PQHeapHandle PQhandle |
Definition at line 94 of file priorityq-sort.h.
| typedef PQHeapKey PQkey |
Definition at line 93 of file priorityq-sort.h.
Definition at line 95 of file priorityq-sort.h.
Definition at line 234 of file priorityq-heap.c.
Definition at line 88 of file priorityq-heap.c.
Definition at line 211 of file priorityq-heap.c.
| int pqInit | ( | PriorityQ * | pq | ) |
Definition at line 149 of file priorityq-heap.c.
Definition at line 163 of file priorityq-heap.c.
| int pqIsEmpty | ( | PriorityQ * | pq | ) |
Definition at line 242 of file priorityq.c.
Definition at line 224 of file priorityq.c.
Definition at line 58 of file priorityq-heap.c.