-
Notifications
You must be signed in to change notification settings - Fork 0
/
pavl.c
858 lines (770 loc) · 24.7 KB
/
pavl.c
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
/* Produced by texiweb from libavl.w. */
/* libavl - library for manipulation of binary trees.
Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004 Free Software
Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
*/
/* $Id$ */
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include "pavl.h"
/* Creates and returns a new table
with comparison function |compare| using parameter |param|
and memory allocator |allocator|.
Returns |NULL| if memory allocation failed. */
struct pavl_table *
pavl_create (pavl_comparison_func *compare, void *param,
struct libavl_allocator *allocator)
{
struct pavl_table *tree;
assert (compare != NULL);
if (allocator == NULL)
allocator = &pavl_allocator_default;
tree = allocator->libavl_malloc (allocator, sizeof *tree);
if (tree == NULL)
return NULL;
tree->pavl_root = NULL;
tree->pavl_compare = compare;
tree->pavl_param = param;
tree->pavl_alloc = allocator;
tree->pavl_count = 0;
return tree;
}
/* Search |tree| for an item matching |item|, and return it if found.
Otherwise return |NULL|. */
void *
pavl_find (const struct pavl_table *tree, const void *item)
{
const struct pavl_node *p;
assert (tree != NULL && item != NULL);
for (p = tree->pavl_root; p != NULL; )
{
int cmp = tree->pavl_compare (item, p->pavl_data, tree->pavl_param);
if (cmp < 0)
p = p->pavl_link[0];
else if (cmp > 0)
p = p->pavl_link[1];
else /* |cmp == 0| */
return p->pavl_data;
}
return NULL;
}
/* Inserts |item| into |tree| and returns a pointer to |item|'s address.
If a duplicate item is found in the tree,
returns a pointer to the duplicate without inserting |item|.
Returns |NULL| in case of memory allocation failure. */
void **
pavl_probe (struct pavl_table *tree, void *item)
{
struct pavl_node *y; /* Top node to update balance factor, and parent. */
struct pavl_node *p, *q; /* Iterator, and parent. */
struct pavl_node *n; /* Newly inserted node. */
struct pavl_node *w; /* New root of rebalanced subtree. */
int dir = 0; /* Direction to descend. */
assert (tree != NULL && item != NULL);
y = tree->pavl_root;
for (q = NULL, p = tree->pavl_root; p != NULL; q = p, p = p->pavl_link[dir])
{
int cmp = tree->pavl_compare (item, p->pavl_data, tree->pavl_param);
if (cmp == 0)
return &p->pavl_data;
dir = cmp > 0;
if (p->pavl_balance != 0)
y = p;
}
n = tree->pavl_alloc->libavl_malloc (tree->pavl_alloc, sizeof *p);
if (n == NULL)
return NULL;
tree->pavl_count++;
n->pavl_link[0] = n->pavl_link[1] = NULL;
n->pavl_parent = q;
n->pavl_data = item;
if (q != NULL)
q->pavl_link[dir] = n;
else
tree->pavl_root = n;
n->pavl_balance = 0;
if (tree->pavl_root == n)
return &n->pavl_data;
for (p = n; p != y; p = q)
{
q = p->pavl_parent;
dir = q->pavl_link[0] != p;
if (dir == 0)
q->pavl_balance--;
else
q->pavl_balance++;
}
if (y->pavl_balance == -2)
{
struct pavl_node *x = y->pavl_link[0];
if (x->pavl_balance == -1)
{
w = x;
y->pavl_link[0] = x->pavl_link[1];
x->pavl_link[1] = y;
x->pavl_balance = y->pavl_balance = 0;
x->pavl_parent = y->pavl_parent;
y->pavl_parent = x;
if (y->pavl_link[0] != NULL)
y->pavl_link[0]->pavl_parent = y;
}
else
{
assert (x->pavl_balance == +1);
w = x->pavl_link[1];
x->pavl_link[1] = w->pavl_link[0];
w->pavl_link[0] = x;
y->pavl_link[0] = w->pavl_link[1];
w->pavl_link[1] = y;
if (w->pavl_balance == -1)
x->pavl_balance = 0, y->pavl_balance = +1;
else if (w->pavl_balance == 0)
x->pavl_balance = y->pavl_balance = 0;
else /* |w->pavl_balance == +1| */
x->pavl_balance = -1, y->pavl_balance = 0;
w->pavl_balance = 0;
w->pavl_parent = y->pavl_parent;
x->pavl_parent = y->pavl_parent = w;
if (x->pavl_link[1] != NULL)
x->pavl_link[1]->pavl_parent = x;
if (y->pavl_link[0] != NULL)
y->pavl_link[0]->pavl_parent = y;
}
}
else if (y->pavl_balance == +2)
{
struct pavl_node *x = y->pavl_link[1];
if (x->pavl_balance == +1)
{
w = x;
y->pavl_link[1] = x->pavl_link[0];
x->pavl_link[0] = y;
x->pavl_balance = y->pavl_balance = 0;
x->pavl_parent = y->pavl_parent;
y->pavl_parent = x;
if (y->pavl_link[1] != NULL)
y->pavl_link[1]->pavl_parent = y;
}
else
{
assert (x->pavl_balance == -1);
w = x->pavl_link[0];
x->pavl_link[0] = w->pavl_link[1];
w->pavl_link[1] = x;
y->pavl_link[1] = w->pavl_link[0];
w->pavl_link[0] = y;
if (w->pavl_balance == +1)
x->pavl_balance = 0, y->pavl_balance = -1;
else if (w->pavl_balance == 0)
x->pavl_balance = y->pavl_balance = 0;
else /* |w->pavl_balance == -1| */
x->pavl_balance = +1, y->pavl_balance = 0;
w->pavl_balance = 0;
w->pavl_parent = y->pavl_parent;
x->pavl_parent = y->pavl_parent = w;
if (x->pavl_link[0] != NULL)
x->pavl_link[0]->pavl_parent = x;
if (y->pavl_link[1] != NULL)
y->pavl_link[1]->pavl_parent = y;
}
}
else
return &n->pavl_data;
if (w->pavl_parent != NULL)
w->pavl_parent->pavl_link[y != w->pavl_parent->pavl_link[0]] = w;
else
tree->pavl_root = w;
return &n->pavl_data;
}
/* Inserts |item| into |table|.
Returns |NULL| if |item| was successfully inserted
or if a memory allocation error occurred.
Otherwise, returns the duplicate item. */
void *
pavl_insert (struct pavl_table *table, void *item)
{
void **p = pavl_probe (table, item);
return p == NULL || *p == item ? NULL : *p;
}
/* Inserts |item| into |table|, replacing any duplicate item.
Returns |NULL| if |item| was inserted without replacing a duplicate,
or if a memory allocation error occurred.
Otherwise, returns the item that was replaced. */
void *
pavl_replace (struct pavl_table *table, void *item)
{
void **p = pavl_probe (table, item);
if (p == NULL || *p == item)
return NULL;
else
{
void *r = *p;
*p = item;
return r;
}
}
/* Deletes from |tree| and returns an item matching |item|.
Returns a null pointer if no matching item found. */
void *
pavl_delete (struct pavl_table *tree, const void *item)
{
struct pavl_node *p; /* Traverses tree to find node to delete. */
struct pavl_node *q; /* Parent of |p|. */
int dir = 0; /* Side of |q| on which |p| is linked. */
assert (tree != NULL && item != NULL);
if (tree->pavl_root == NULL)
return NULL;
p = tree->pavl_root;
for (;;)
{
int cmp = tree->pavl_compare (item, p->pavl_data, tree->pavl_param);
if (cmp == 0)
break;
dir = cmp > 0;
p = p->pavl_link[dir];
if (p == NULL)
return NULL;
}
item = p->pavl_data;
q = p->pavl_parent;
if (q == NULL)
{
q = (struct pavl_node *) &tree->pavl_root;
dir = 0;
}
if (p->pavl_link[1] == NULL)
{
q->pavl_link[dir] = p->pavl_link[0];
if (q->pavl_link[dir] != NULL)
q->pavl_link[dir]->pavl_parent = p->pavl_parent;
}
else
{
struct pavl_node *r = p->pavl_link[1];
if (r->pavl_link[0] == NULL)
{
r->pavl_link[0] = p->pavl_link[0];
q->pavl_link[dir] = r;
r->pavl_parent = p->pavl_parent;
if (r->pavl_link[0] != NULL)
r->pavl_link[0]->pavl_parent = r;
r->pavl_balance = p->pavl_balance;
q = r;
dir = 1;
}
else
{
struct pavl_node *s = r->pavl_link[0];
while (s->pavl_link[0] != NULL)
s = s->pavl_link[0];
r = s->pavl_parent;
r->pavl_link[0] = s->pavl_link[1];
s->pavl_link[0] = p->pavl_link[0];
s->pavl_link[1] = p->pavl_link[1];
q->pavl_link[dir] = s;
if (s->pavl_link[0] != NULL)
s->pavl_link[0]->pavl_parent = s;
s->pavl_link[1]->pavl_parent = s;
s->pavl_parent = p->pavl_parent;
if (r->pavl_link[0] != NULL)
r->pavl_link[0]->pavl_parent = r;
s->pavl_balance = p->pavl_balance;
q = r;
dir = 0;
}
}
tree->pavl_alloc->libavl_free (tree->pavl_alloc, p);
while (q != (struct pavl_node *) &tree->pavl_root)
{
struct pavl_node *y = q;
if (y->pavl_parent != NULL)
q = y->pavl_parent;
else
q = (struct pavl_node *) &tree->pavl_root;
if (dir == 0)
{
dir = q->pavl_link[0] != y;
y->pavl_balance++;
if (y->pavl_balance == +1)
break;
else if (y->pavl_balance == +2)
{
struct pavl_node *x = y->pavl_link[1];
if (x->pavl_balance == -1)
{
struct pavl_node *w;
assert (x->pavl_balance == -1);
w = x->pavl_link[0];
x->pavl_link[0] = w->pavl_link[1];
w->pavl_link[1] = x;
y->pavl_link[1] = w->pavl_link[0];
w->pavl_link[0] = y;
if (w->pavl_balance == +1)
x->pavl_balance = 0, y->pavl_balance = -1;
else if (w->pavl_balance == 0)
x->pavl_balance = y->pavl_balance = 0;
else /* |w->pavl_balance == -1| */
x->pavl_balance = +1, y->pavl_balance = 0;
w->pavl_balance = 0;
w->pavl_parent = y->pavl_parent;
x->pavl_parent = y->pavl_parent = w;
if (x->pavl_link[0] != NULL)
x->pavl_link[0]->pavl_parent = x;
if (y->pavl_link[1] != NULL)
y->pavl_link[1]->pavl_parent = y;
q->pavl_link[dir] = w;
}
else
{
y->pavl_link[1] = x->pavl_link[0];
x->pavl_link[0] = y;
x->pavl_parent = y->pavl_parent;
y->pavl_parent = x;
if (y->pavl_link[1] != NULL)
y->pavl_link[1]->pavl_parent = y;
q->pavl_link[dir] = x;
if (x->pavl_balance == 0)
{
x->pavl_balance = -1;
y->pavl_balance = +1;
break;
}
else
{
x->pavl_balance = y->pavl_balance = 0;
y = x;
}
}
}
}
else
{
dir = q->pavl_link[0] != y;
y->pavl_balance--;
if (y->pavl_balance == -1)
break;
else if (y->pavl_balance == -2)
{
struct pavl_node *x = y->pavl_link[0];
if (x->pavl_balance == +1)
{
struct pavl_node *w;
assert (x->pavl_balance == +1);
w = x->pavl_link[1];
x->pavl_link[1] = w->pavl_link[0];
w->pavl_link[0] = x;
y->pavl_link[0] = w->pavl_link[1];
w->pavl_link[1] = y;
if (w->pavl_balance == -1)
x->pavl_balance = 0, y->pavl_balance = +1;
else if (w->pavl_balance == 0)
x->pavl_balance = y->pavl_balance = 0;
else /* |w->pavl_balance == +1| */
x->pavl_balance = -1, y->pavl_balance = 0;
w->pavl_balance = 0;
w->pavl_parent = y->pavl_parent;
x->pavl_parent = y->pavl_parent = w;
if (x->pavl_link[1] != NULL)
x->pavl_link[1]->pavl_parent = x;
if (y->pavl_link[0] != NULL)
y->pavl_link[0]->pavl_parent = y;
q->pavl_link[dir] = w;
}
else
{
y->pavl_link[0] = x->pavl_link[1];
x->pavl_link[1] = y;
x->pavl_parent = y->pavl_parent;
y->pavl_parent = x;
if (y->pavl_link[0] != NULL)
y->pavl_link[0]->pavl_parent = y;
q->pavl_link[dir] = x;
if (x->pavl_balance == 0)
{
x->pavl_balance = +1;
y->pavl_balance = -1;
break;
}
else
{
x->pavl_balance = y->pavl_balance = 0;
y = x;
}
}
}
}
}
tree->pavl_count--;
return (void *) item;
}
/* Initializes |trav| for use with |tree|
and selects the null node. */
void
pavl_t_init (struct pavl_traverser *trav, struct pavl_table *tree)
{
trav->pavl_table = tree;
trav->pavl_node = NULL;
}
/* Initializes |trav| for |tree|.
Returns data item in |tree| with the least value,
or |NULL| if |tree| is empty. */
void *
pavl_t_first (struct pavl_traverser *trav, struct pavl_table *tree)
{
assert (tree != NULL && trav != NULL);
trav->pavl_table = tree;
trav->pavl_node = tree->pavl_root;
if (trav->pavl_node != NULL)
{
while (trav->pavl_node->pavl_link[0] != NULL)
trav->pavl_node = trav->pavl_node->pavl_link[0];
return trav->pavl_node->pavl_data;
}
else
return NULL;
}
/* Initializes |trav| for |tree|.
Returns data item in |tree| with the greatest value,
or |NULL| if |tree| is empty. */
void *
pavl_t_last (struct pavl_traverser *trav, struct pavl_table *tree)
{
assert (tree != NULL && trav != NULL);
trav->pavl_table = tree;
trav->pavl_node = tree->pavl_root;
if (trav->pavl_node != NULL)
{
while (trav->pavl_node->pavl_link[1] != NULL)
trav->pavl_node = trav->pavl_node->pavl_link[1];
return trav->pavl_node->pavl_data;
}
else
return NULL;
}
/* Searches for |item| in |tree|.
If found, initializes |trav| to the item found and returns the item
as well.
If there is no matching item, initializes |trav| to the null item
and returns |NULL|. */
void *
pavl_t_find (struct pavl_traverser *trav, struct pavl_table *tree, void *item)
{
struct pavl_node *p;
int dir;
assert (trav != NULL && tree != NULL && item != NULL);
trav->pavl_table = tree;
for (p = tree->pavl_root; p != NULL; p = p->pavl_link[dir])
{
int cmp = tree->pavl_compare (item, p->pavl_data, tree->pavl_param);
if (cmp == 0)
{
trav->pavl_node = p;
return p->pavl_data;
}
dir = cmp > 0;
}
trav->pavl_node = NULL;
return NULL;
}
/* Attempts to insert |item| into |tree|.
If |item| is inserted successfully, it is returned and |trav| is
initialized to its location.
If a duplicate is found, it is returned and |trav| is initialized to
its location. No replacement of the item occurs.
If a memory allocation failure occurs, |NULL| is returned and |trav|
is initialized to the null item. */
void *
pavl_t_insert (struct pavl_traverser *trav,
struct pavl_table *tree, void *item)
{
void **p;
assert (trav != NULL && tree != NULL && item != NULL);
p = pavl_probe (tree, item);
if (p != NULL)
{
trav->pavl_table = tree;
trav->pavl_node =
((struct pavl_node *)
((char *) p - offsetof (struct pavl_node, pavl_data)));
return *p;
}
else
{
pavl_t_init (trav, tree);
return NULL;
}
}
/* Initializes |trav| to have the same current node as |src|. */
void *
pavl_t_copy (struct pavl_traverser *trav, const struct pavl_traverser *src)
{
assert (trav != NULL && src != NULL);
trav->pavl_table = src->pavl_table;
trav->pavl_node = src->pavl_node;
return trav->pavl_node != NULL ? trav->pavl_node->pavl_data : NULL;
}
/* Returns the next data item in inorder
within the tree being traversed with |trav|,
or if there are no more data items returns |NULL|. */
void *
pavl_t_next (struct pavl_traverser *trav)
{
assert (trav != NULL);
if (trav->pavl_node == NULL)
return pavl_t_first (trav, trav->pavl_table);
else if (trav->pavl_node->pavl_link[1] == NULL)
{
struct pavl_node *q, *p; /* Current node and its child. */
for (p = trav->pavl_node, q = p->pavl_parent; ;
p = q, q = q->pavl_parent)
if (q == NULL || p == q->pavl_link[0])
{
trav->pavl_node = q;
return trav->pavl_node != NULL ? trav->pavl_node->pavl_data : NULL;
}
}
else
{
trav->pavl_node = trav->pavl_node->pavl_link[1];
while (trav->pavl_node->pavl_link[0] != NULL)
trav->pavl_node = trav->pavl_node->pavl_link[0];
return trav->pavl_node->pavl_data;
}
}
/* Returns the previous data item in inorder
within the tree being traversed with |trav|,
or if there are no more data items returns |NULL|. */
void *
pavl_t_prev (struct pavl_traverser *trav)
{
assert (trav != NULL);
if (trav->pavl_node == NULL)
return pavl_t_last (trav, trav->pavl_table);
else if (trav->pavl_node->pavl_link[0] == NULL)
{
struct pavl_node *q, *p; /* Current node and its child. */
for (p = trav->pavl_node, q = p->pavl_parent; ;
p = q, q = q->pavl_parent)
if (q == NULL || p == q->pavl_link[1])
{
trav->pavl_node = q;
return trav->pavl_node != NULL ? trav->pavl_node->pavl_data : NULL;
}
}
else
{
trav->pavl_node = trav->pavl_node->pavl_link[0];
while (trav->pavl_node->pavl_link[1] != NULL)
trav->pavl_node = trav->pavl_node->pavl_link[1];
return trav->pavl_node->pavl_data;
}
}
/* Returns |trav|'s current item. */
void *
pavl_t_cur (struct pavl_traverser *trav)
{
assert (trav != NULL);
return trav->pavl_node != NULL ? trav->pavl_node->pavl_data : NULL;
}
/* Replaces the current item in |trav| by |new| and returns the item replaced.
|trav| must not have the null item selected.
The new item must not upset the ordering of the tree. */
void *
pavl_t_replace (struct pavl_traverser *trav, void *new)
{
void *old;
assert (trav != NULL && trav->pavl_node != NULL && new != NULL);
old = trav->pavl_node->pavl_data;
trav->pavl_node->pavl_data = new;
return old;
}
/* Destroys |new| with |pavl_destroy (new, destroy)|,
first initializing right links in |new| that have
not yet been initialized at time of call. */
static void
copy_error_recovery (struct pavl_node *q,
struct pavl_table *new, pavl_item_func *destroy)
{
assert (q != NULL && new != NULL);
for (;;)
{
struct pavl_node *p = q;
q = q->pavl_parent;
if (q == NULL)
break;
if (p == q->pavl_link[0])
q->pavl_link[1] = NULL;
}
pavl_destroy (new, destroy);
}
/* Copies |org| to a newly created tree, which is returned.
If |copy != NULL|, each data item in |org| is first passed to |copy|,
and the return values are inserted into the tree;
|NULL| return values are taken as indications of failure.
On failure, destroys the partially created new tree,
applying |destroy|, if non-null, to each item in the new tree so far,
and returns |NULL|.
If |allocator != NULL|, it is used for allocation in the new tree.
Otherwise, the same allocator used for |org| is used. */
struct pavl_table *
pavl_copy (const struct pavl_table *org, pavl_copy_func *copy,
pavl_item_func *destroy, struct libavl_allocator *allocator)
{
struct pavl_table *new;
const struct pavl_node *x;
struct pavl_node *y;
assert (org != NULL);
new = pavl_create (org->pavl_compare, org->pavl_param,
allocator != NULL ? allocator : org->pavl_alloc);
if (new == NULL)
return NULL;
new->pavl_count = org->pavl_count;
if (new->pavl_count == 0)
return new;
x = (const struct pavl_node *) &org->pavl_root;
y = (struct pavl_node *) &new->pavl_root;
for (;;)
{
while (x->pavl_link[0] != NULL)
{
y->pavl_link[0] =
new->pavl_alloc->libavl_malloc (new->pavl_alloc,
sizeof *y->pavl_link[0]);
if (y->pavl_link[0] == NULL)
{
if (y != (struct pavl_node *) &new->pavl_root)
{
y->pavl_data = NULL;
y->pavl_link[1] = NULL;
}
copy_error_recovery (y, new, destroy);
return NULL;
}
y->pavl_link[0]->pavl_parent = y;
x = x->pavl_link[0];
y = y->pavl_link[0];
}
y->pavl_link[0] = NULL;
for (;;)
{
y->pavl_balance = x->pavl_balance;
if (copy == NULL)
y->pavl_data = x->pavl_data;
else
{
y->pavl_data = copy (x->pavl_data, org->pavl_param);
if (y->pavl_data == NULL)
{
y->pavl_link[1] = NULL;
copy_error_recovery (y, new, destroy);
return NULL;
}
}
if (x->pavl_link[1] != NULL)
{
y->pavl_link[1] =
new->pavl_alloc->libavl_malloc (new->pavl_alloc,
sizeof *y->pavl_link[1]);
if (y->pavl_link[1] == NULL)
{
copy_error_recovery (y, new, destroy);
return NULL;
}
y->pavl_link[1]->pavl_parent = y;
x = x->pavl_link[1];
y = y->pavl_link[1];
break;
}
else
y->pavl_link[1] = NULL;
for (;;)
{
const struct pavl_node *w = x;
x = x->pavl_parent;
if (x == NULL)
{
new->pavl_root->pavl_parent = NULL;
return new;
}
y = y->pavl_parent;
if (w == x->pavl_link[0])
break;
}
}
}
}
/* Frees storage allocated for |tree|.
If |destroy != NULL|, applies it to each data item in inorder. */
void
pavl_destroy (struct pavl_table *tree, pavl_item_func *destroy)
{
struct pavl_node *p, *q;
assert (tree != NULL);
for (p = tree->pavl_root; p != NULL; p = q)
if (p->pavl_link[0] == NULL)
{
q = p->pavl_link[1];
if (destroy != NULL && p->pavl_data != NULL)
destroy (p->pavl_data, tree->pavl_param);
tree->pavl_alloc->libavl_free (tree->pavl_alloc, p);
}
else
{
q = p->pavl_link[0];
p->pavl_link[0] = q->pavl_link[1];
q->pavl_link[1] = p;
}
tree->pavl_alloc->libavl_free (tree->pavl_alloc, tree);
}
/* Allocates |size| bytes of space using |malloc()|.
Returns a null pointer if allocation fails. */
void *
pavl_malloc (struct libavl_allocator *allocator, size_t size)
{
assert (allocator != NULL && size > 0);
return malloc (size);
}
/* Frees |block|. */
void
pavl_free (struct libavl_allocator *allocator, void *block)
{
assert (allocator != NULL && block != NULL);
free (block);
}
/* Default memory allocator that uses |malloc()| and |free()|. */
struct libavl_allocator pavl_allocator_default =
{
pavl_malloc,
pavl_free
};
#undef NDEBUG
#include <assert.h>
/* Asserts that |pavl_insert()| succeeds at inserting |item| into |table|. */
void
(pavl_assert_insert) (struct pavl_table *table, void *item)
{
void **p = pavl_probe (table, item);
assert (p != NULL && *p == item);
}
/* Asserts that |pavl_delete()| really removes |item| from |table|,
and returns the removed item. */
void *
(pavl_assert_delete) (struct pavl_table *table, void *item)
{
void *p = pavl_delete (table, item);
assert (p != NULL);
return p;
}