-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdltree_funcs.h
308 lines (245 loc) · 6.83 KB
/
dltree_funcs.h
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
/**
* @file dltree_funcs.h
* @brief Tree functions
* @author Dominique LaSalle <[email protected]>
* Copyright (c) 2013-2015, Dominique LaSalle
* @version 1
* @date 2013-10-03
*/
/* this is ugly but neccessary */
#define DLTREE_PRE2(prefix,suffix) prefix ## _ ## suffix
#define DLTREE_PRE1(prefix,suffix) DLTREE_PRE2(prefix,suffix)
#define DLTREE_PUB(name) DLTREE_PRE1(DLTREE_PREFIX,name)
#define DLTREE_PRI(name) \
DLTREE_PRE1(_,DLTREE_PRE1(DLTREE_PREFIX,name))
#define DLMEM_PREFIX DLTREE_PRI(tree_node)
#define DLMEM_TYPE_T DLTREE_PRI(tree_node_t)
#define DLMEM_STATIC
#include "dlmem_headers.h"
#undef DLMEM_STATIC
#undef DLMEM_TYPE_T
#undef DLMEM_PREFIX
#define DLMEM_PREFIX DLTREE_PUB(tree)
#define DLMEM_TYPE_T DLTREE_PUB(tree_t)
#define DLMEM_STATIC
#include "dlmem_headers.h"
#undef DLMEM_STATIC
#undef DLMEM_TYPE_T
#undef DLMEM_PREFIX
/******************************************************************************
* PRIVATE FUNCTIONS ***********************************************************
******************************************************************************/
static void DLTREE_PRI(tree_node_free)(DLTREE_PRI(tree_node_t) * node)
{
size_t i;
for (i=0;i<node->nchildren;++i) {
DLTREE_PRI(tree_node_free)(node->children[i]);
}
dl_free(node);
}
static DLTREE_VAL_T DLTREE_PRI(tree_find)(
DLTREE_KEY_T const key,
DLTREE_PRI(tree_node_t) * const node,
int (*compar)(DLTREE_KEY_T const, DLTREE_KEY_T const))
{
int r;
size_t i,j,k;
j=i=0;
k=node->nelements;
while (i < k) {
j = (i+k)/2;
r = compar(key,node->key[j]);
if (r < 0) {
k = j;
} else if (r > 0) {
i = j+1;
} else {
/* key collision */
return node->val[j];
}
}
j = (i+k)/2;
if (node->nchildren > 0) {
DL_ASSERT(node->nchildren == node->nelements+1,"Wrong number of "
"children\n");
return DLTREE_PRI(tree_find)(key,node->children[j],compar);
} else {
return (DLTREE_VAL_T)-1;
}
}
static void DLTREE_PRI(tree_shift)(
size_t const idx,
DLTREE_PRI(tree_node_t) * const node)
{
size_t i;
DL_ASSERT(node->nelements < DLTREE_WIDTH,"Attempting to shift a full "
"node\n");
i=node->nelements;
while (i > idx) {
node->key[i] = node->key[i-1];
node->val[i] = node->val[i-1];
if (node->nchildren > 0) {
node->children[i+1] = node->children[i];
}
--i;
}
}
static void DLTREE_PRI(tree_split)(
size_t const idx,
DLTREE_PRI(tree_node_t) * const node)
{
size_t i, n;
DLTREE_KEY_T key;
DLTREE_VAL_T val;
DLTREE_PRI(tree_node_t) * newchild, * oldchild;
newchild = DLTREE_PRI(tree_node_alloc)(1);
oldchild = node->children[idx];
newchild->nelements=0;
newchild->nchildren=0;
/* move keys and values to new child */
n = oldchild->nelements / 2;
for (i=n+1;i<oldchild->nelements;++i) {
newchild->key[newchild->nelements] = oldchild->key[i];
newchild->val[newchild->nelements] = oldchild->val[i];
++newchild->nelements;
}
oldchild->nelements = n;
/* save the moving child */
key = oldchild->key[n];
val = oldchild->val[n];
/* move children to new child */
n = oldchild->nchildren / 2;
for (i=n;i<oldchild->nchildren;++i) {
newchild->children[newchild->nchildren] = oldchild->children[i];
++newchild->nchildren;
}
oldchild->nchildren = n;
/* make room for the upgraded node and the new child */
DLTREE_PRI(tree_shift)(idx,node);
++node->nelements;
if (node->nchildren > 0) {
++node->nchildren;
}
/* insert the upgraded node and the new child */
node->key[idx] = key;
node->val[idx] = val;
node->children[idx+1] = newchild;
}
static int DLTREE_PRI(tree_insert)(
DLTREE_KEY_T const key,
DLTREE_VAL_T const val,
DLTREE_PRI(tree_node_t) * const node,
int (*compar)(DLTREE_KEY_T const, DLTREE_KEY_T const))
{
int r;
size_t i,j,k;
DL_ASSERT(node->nelements < DLTREE_WIDTH,"Encountered full node\n");
/* do a binary search to find where the key goes */
r = -1; /* default for an empty tree */
j = i =0;
k=node->nelements;
while (i < k) {
j = (i+k)/2;
r = compar(key,node->key[j]);
if (r < 0) {
k = j;
} else if (r > 0) {
i = j+1;
} else {
/* key collision */
return 0;
}
}
j = (i+k)/2;
DL_ASSERT(r != 0,"Didn't exit on found key\n");
if (node->nchildren > 0) {
/* traverse down j */
DL_ASSERT(node->nchildren == node->nelements+1,"Incorrect number of "
"children\n");
if (node->children[j]->nelements == DLTREE_WIDTH) {
/* split the full node */
DLTREE_PRI(tree_split)(j,node);
/* see which resulting child we want */
if (compar(key,node->key[j]) > 0) {
++j;
}
}
return DLTREE_PRI(tree_insert)(key,val,node->children[j],compar);
} else {
/* insert in this node */
if (j < node->nelements) {
DLTREE_PRI(tree_shift)(j,node);
}
node->key[j] = (DLTREE_KEY_T)key;
node->val[j] = (DLTREE_VAL_T)val;
++node->nelements;
return 1;
}
}
/******************************************************************************
* PUBLIC FUNCTIONS ************************************************************
******************************************************************************/
#ifndef DLTREE_VISIBILITY
#define DLTREE_VISIBILITY
#define DLTREE_DEFVIS
#endif
DLTREE_VISIBILITY DLTREE_PUB(tree_t) * DLTREE_PUB(tree_create)(
int (*compar)(DLTREE_KEY_T const, DLTREE_KEY_T const))
{
DLTREE_PUB(tree_t) * tree;
tree = DLTREE_PUB(tree_alloc)(1);
tree->root = DLTREE_PRI(tree_node_alloc(1));
tree->root->nelements = 0;
tree->root->nchildren = 0;
tree->size = 0;
tree->compar = compar;
return tree;
}
DLTREE_VISIBILITY void DLTREE_PUB(tree_free)(
DLTREE_PUB(tree_t) * tree)
{
DLTREE_PRI(tree_node_free)(tree->root);
dl_free(tree);
}
DLTREE_VISIBILITY int DLTREE_PUB(tree_add)(
DLTREE_KEY_T const key,
DLTREE_VAL_T const val,
DLTREE_PUB(tree_t) * const tree)
{
int r;
DLTREE_PRI(tree_node_t) * root;
if (tree->root->nelements == DLTREE_WIDTH) {
root = tree->root;
tree->root = DLTREE_PRI(tree_node_alloc)(1);
tree->root->nelements = 0;
tree->root->nchildren = 1;
tree->root->children[0] = root;
DLTREE_PRI(tree_split)(0,tree->root);
}
r = DLTREE_PRI(tree_insert)(key,val,tree->root,tree->compar);
if (r) {
++tree->size;
}
return r;
}
DLTREE_VISIBILITY DLTREE_VAL_T DLTREE_PUB(tree_remove)(
DLTREE_KEY_T const key,
DLTREE_PUB(tree_t) * const tree)
{
/* implement me */
return (DLTREE_VAL_T)0;
}
DLTREE_VISIBILITY DLTREE_VAL_T DLTREE_PUB(tree_get)(
DLTREE_KEY_T const key,
DLTREE_PUB(tree_t) * const tree)
{
return DLTREE_PRI(tree_find)(key,tree->root,tree->compar);
}
#ifdef DLMEM_DEFVIS
#undef DLMEM_VISIBILITY
#undef DLMEM_DEFVIS
#endif
#undef DLTREE_PUB
#undef DLTREE_PRI
#undef DLTREE_PRE1
#undef DLTREE_PRE2