summaryrefslogtreecommitdiffstats
path: root/src/pqueue.c
blob: ba85873b9c99c0620d3cc89601d9b4d87c63bb02 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
  Copyright (c) 2012-2016, Matthias Schiffer <mschiffer@universe-factory.net>
  All rights reserved.

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions are met:

    1. Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

/**
   \file

   Priority queue implementation

   Priority queues implemented using pairing heaps.
*/


#include "pqueue.h"
#include "log.h"


/** Links an element at the position specified by \e pqueue */
static inline void pqueue_link(fastd_pqueue_t **pqueue, fastd_pqueue_t *elem) {
	if (elem->next)
		exit_bug("pqueue_link: element already linked");

	elem->pprev = pqueue;
	elem->next = *pqueue;
	if (elem->next)
		elem->next->pprev = &elem->next;

	*pqueue = elem;
}

/** Unlinks an element */
static inline void pqueue_unlink(fastd_pqueue_t *elem) {
	*elem->pprev = elem->next;
	if (elem->next)
		elem->next->pprev = elem->pprev;

	elem->next = NULL;
}


/**
   Merges two priority queues

   \e pqueue2 may be empty (NULL)
*/
static fastd_pqueue_t * pqueue_merge(fastd_pqueue_t *pqueue1, fastd_pqueue_t *pqueue2) {
	if (!pqueue1)
		exit_bug("pqueue_merge: pqueue1 unset");
	if (pqueue1->next)
		exit_bug("pqueue_merge: pqueue1 has successor");

	if (!pqueue2)
		return pqueue1;

	if (pqueue2->next)
		exit_bug("pqueue_merge: pqueue2 has successor");

	fastd_pqueue_t *lo, *hi;

	if (pqueue1->value < pqueue2->value) {
		lo = pqueue1;
		hi = pqueue2;
	}
	else {
		lo = pqueue2;
		hi = pqueue1;
	}

	pqueue_link(&lo->children, hi);

	return lo;
}

/** Merges a list of priority queues */
static fastd_pqueue_t * pqueue_merge_pairs(fastd_pqueue_t *pqueue0) {
	if (!pqueue0)
		return NULL;

	if (!pqueue0->pprev)
		exit_bug("pqueue_merge_pairs: unlinked pqueue");

	fastd_pqueue_t *pqueue1 = pqueue0->next;

	if (!pqueue1)
		return pqueue0;

	fastd_pqueue_t *pqueue2 = pqueue1->next;

	pqueue0->next = pqueue1->next = NULL;

	return pqueue_merge(pqueue_merge(pqueue0, pqueue1), pqueue_merge_pairs(pqueue2));
}

/** Inserts a new element into a priority queue */
void fastd_pqueue_insert(fastd_pqueue_t **pqueue, fastd_pqueue_t *elem) {
	if (elem->pprev || elem->next || elem->children)
		exit_bug("fastd_pqueue_insert: tried to insert linked pqueue element");

	*pqueue = pqueue_merge(elem, *pqueue);
	(*pqueue)->pprev = pqueue;
}

/** Removes an element from a priority queue */
void fastd_pqueue_remove(fastd_pqueue_t *elem) {
	if (!fastd_pqueue_linked(elem)) {
		if (elem->children || elem->next)
			exit_bug("fastd_pqueue_remove: corrupted pqueue item");

		return;
	}

	fastd_pqueue_t **pprev = elem->pprev;

	pqueue_unlink(elem);

	fastd_pqueue_t *merged = pqueue_merge_pairs(elem->children);
	if (merged)
		pqueue_link(pprev, merged);

	elem->pprev = NULL;
	elem->children = NULL;
}