Data Structures UFC
1.0.0
Essential Data Structures for C language
|
Priority Queue Data Structure. Like a normal queue about push/pop logic, but each individual now heave a weight. A inner heap implementation it's provided. More...
#include <pqueue.h>
Data Fields | |
int | heap [PQUEUE_SIZE] |
int | size |
Priority Queue Data Structure. Like a normal queue about push/pop logic, but each individual now heave a weight. A inner heap implementation it's provided.
int PQueue::heap[PQUEUE_SIZE] |
inner heap for weights
int PQueue::size |
the current size of PQueue