2 * Copyright (C) 2010 Joseph Adams <joeyadams3.14159@gmail.com>
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
29 typedef struct AVL AVL
;
30 typedef struct AvlNode AvlNode
;
31 typedef struct AvlIter AvlIter
;
33 typedef int (*AvlCompare
)(const void *, const void *);
35 AVL
*avl_new(AvlCompare compare
);
36 /* Create a new AVL tree sorted with the given comparison function. */
38 void avl_free(AVL
*avl
);
39 /* Free an AVL tree. */
41 void *avl_lookup(const AVL
*avl
, const void *key
);
42 /* O(log n). Lookup a value at a key. Return NULL if the key is not present. */
44 #define avl_member(avl, key) (!!avl_lookup_node(avl, key))
45 /* O(log n). See if a key is present. */
47 size_t avl_count(const AVL
*avl
);
48 /* O(1). Return the number of elements in the tree. */
50 bool avl_insert(AVL
*avl
, const void *key
, const void *value
);
52 * O(log n). Insert a key/value pair, or replace it if already present.
54 * Return false if the insertion replaced an existing key/value.
57 bool avl_remove(AVL
*avl
, const void *key
);
59 * O(log n). Remove a key/value pair (if present).
61 * Return true if it was removed.
64 bool avl_check_invariants(AVL
*avl
);
65 /* For testing purposes. This function will always return true :-) */
68 /************************* Traversal *************************/
70 #define avl_foreach(iter, avl) avl_traverse(iter, avl, FORWARD)
72 * O(n). Traverse an AVL tree in order.
79 * printf("%s -> %s\n", i.key, i.value);
82 #define avl_foreach_reverse(iter, avl) avl_traverse(iter, avl, BACKWARD)
83 /* O(n). Traverse an AVL tree in reverse order. */
85 typedef enum AvlDirection
{FORWARD
= 0, BACKWARD
= 1} AvlDirection
;
95 AvlDirection direction
;
98 void avl_iter_begin(AvlIter
*iter
, AVL
*avl
, AvlDirection dir
);
99 void avl_iter_next(AvlIter
*iter
);
100 #define avl_traverse(iter, avl, direction) \
101 for (avl_iter_begin(&(iter), avl, direction); \
102 (iter).node != NULL; \
103 avl_iter_next(&iter))
106 /***************** Internal data structures ******************/
119 int balance
; /* -1, 0, or 1 */
122 AvlNode
*avl_lookup_node(const AVL
*avl
, const void *key
);
123 /* O(log n). Lookup an AVL node by key. Return NULL if not present. */