summaryrefslogtreecommitdiffstats
path: root/prioq.h
blob: 46c64827965f3d0f8931a704360e474d8adc13ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef fooprioqhfoo
#define fooprioqhfoo

#include <glib.h>

struct _flxPrioQueue;
typedef struct _flxPrioQueue flxPrioQueue;

struct _flxPrioQueueNode;
typedef struct _flxPrioQueueNode flxPrioQueueNode;

struct _flxPrioQueue {
    flxPrioQueueNode *root, *last;
    
    guint n_nodes;
    gint (*compare) (gconstpointer a, gconstpointer b);
};

struct _flxPrioQueueNode {
    flxPrioQueue *queue;
    gpointer data;
    guint x, y;

    flxPrioQueueNode *left, *right, *parent, *next, *prev;
};

flxPrioQueue* flx_prio_queue_new(gint (*compare) (gconstpointer a, gconstpointer b));
void flx_prio_queue_free(flxPrioQueue *q);

flxPrioQueueNode* flx_prio_queue_put(flxPrioQueue *q, gpointer data);
void flx_prio_queue_remove(flxPrioQueue *q, flxPrioQueueNode *n);

void flx_prio_queue_shuffle(flxPrioQueue *q, flxPrioQueueNode *n);

#endif