[358ec13] | 1 | /*
|
---|
| 2 | * Copyright (C) 2007 Vojtech Mencl
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup genericadt
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
| 35 | #ifndef KERN_AVLTREE_H_
|
---|
[7a0359b] | 36 | #define KERN_AVLTREE_H_
|
---|
[358ec13] | 37 |
|
---|
[525c5ac] | 38 | #include <stdbool.h>
|
---|
[e29e44bf] | 39 | #include <stddef.h>
|
---|
[83dab11] | 40 | #include <stdint.h>
|
---|
[7a0359b] | 41 | #include <trace.h>
|
---|
[358ec13] | 42 |
|
---|
| 43 | /**
|
---|
| 44 | * Macro for getting a pointer to the structure which contains the avltree
|
---|
| 45 | * structure.
|
---|
| 46 | *
|
---|
| 47 | * @param link Pointer to the avltree structure.
|
---|
| 48 | * @param type Name of the outer structure.
|
---|
| 49 | * @param member Name of avltree attribute in the outer structure.
|
---|
| 50 | */
|
---|
[d1e9321] | 51 | #define avltree_get_instance(node, type, member) \
|
---|
| 52 | ((type *)(((uint8_t *)(node)) - ((uint8_t *) &(((type *) NULL)->member))))
|
---|
[358ec13] | 53 |
|
---|
| 54 | typedef struct avltree_node avltree_node_t;
|
---|
| 55 | typedef struct avltree avltree_t;
|
---|
| 56 |
|
---|
[d1e9321] | 57 | typedef uint64_t avltree_key_t;
|
---|
| 58 |
|
---|
[b76a2217] | 59 | typedef bool (* avltree_walker_t)(avltree_node_t *, void *);
|
---|
[358ec13] | 60 |
|
---|
| 61 | /** AVL tree node structure. */
|
---|
| 62 | struct avltree_node
|
---|
| 63 | {
|
---|
| 64 | /**
|
---|
| 65 | * Pointer to the left descendant of this node.
|
---|
| 66 | *
|
---|
| 67 | * All keys of nodes in the left subtree are less than the key of this
|
---|
| 68 | * node.
|
---|
| 69 | */
|
---|
| 70 | struct avltree_node *lft;
|
---|
| 71 |
|
---|
| 72 | /**
|
---|
| 73 | * Pointer to the right descendant of this node.
|
---|
| 74 | *
|
---|
| 75 | * All keys of nodes in the right subtree are greater than the key of
|
---|
| 76 | * this node.
|
---|
| 77 | */
|
---|
| 78 | struct avltree_node *rgt;
|
---|
| 79 |
|
---|
| 80 | /** Pointer to the parent node. Root node has NULL parent. */
|
---|
| 81 | struct avltree_node *par;
|
---|
| 82 |
|
---|
| 83 | /** Node's key. */
|
---|
[d1e9321] | 84 | avltree_key_t key;
|
---|
[358ec13] | 85 |
|
---|
| 86 | /**
|
---|
| 87 | * Difference between the heights of the left and the right subtree of
|
---|
| 88 | * this node.
|
---|
| 89 | */
|
---|
| 90 | int8_t balance;
|
---|
| 91 | };
|
---|
| 92 |
|
---|
| 93 | /** AVL tree structure. */
|
---|
| 94 | struct avltree
|
---|
| 95 | {
|
---|
| 96 | /** AVL root node pointer */
|
---|
| 97 | struct avltree_node *root;
|
---|
| 98 |
|
---|
| 99 | /**
|
---|
| 100 | * Base of the tree is a value that is smaller or equal than every value
|
---|
| 101 | * in the tree (valid for positive keys otherwise ignore this atribute).
|
---|
| 102 | *
|
---|
| 103 | * The base is added to the current key when a new node is inserted into
|
---|
| 104 | * the tree. The base is changed to the key of the node which is deleted
|
---|
| 105 | * with avltree_delete_min().
|
---|
| 106 | */
|
---|
[d1e9321] | 107 | avltree_key_t base;
|
---|
[358ec13] | 108 | };
|
---|
| 109 |
|
---|
| 110 |
|
---|
| 111 | /** Create empty AVL tree.
|
---|
| 112 | *
|
---|
| 113 | * @param t AVL tree.
|
---|
| 114 | */
|
---|
[7a0359b] | 115 | NO_TRACE static inline void avltree_create(avltree_t *t)
|
---|
[358ec13] | 116 | {
|
---|
| 117 | t->root = NULL;
|
---|
| 118 | t->base = 0;
|
---|
| 119 | }
|
---|
| 120 |
|
---|
| 121 | /** Initialize node.
|
---|
| 122 | *
|
---|
| 123 | * @param node Node which is initialized.
|
---|
| 124 | */
|
---|
[7a0359b] | 125 | NO_TRACE static inline void avltree_node_initialize(avltree_node_t *node)
|
---|
[358ec13] | 126 | {
|
---|
| 127 | node->key = 0;
|
---|
| 128 | node->lft = NULL;
|
---|
| 129 | node->rgt = NULL;
|
---|
| 130 | node->par = NULL;
|
---|
| 131 | node->balance = 0;
|
---|
| 132 | }
|
---|
| 133 |
|
---|
| 134 | extern avltree_node_t *avltree_find_min(avltree_t *t);
|
---|
[d1e9321] | 135 | extern avltree_node_t *avltree_search(avltree_t *t, avltree_key_t key);
|
---|
[358ec13] | 136 | extern void avltree_insert(avltree_t *t, avltree_node_t *newnode);
|
---|
| 137 | extern void avltree_delete(avltree_t *t, avltree_node_t *node);
|
---|
| 138 | extern bool avltree_delete_min(avltree_t *t);
|
---|
[b76a2217] | 139 | extern void avltree_walk(avltree_t *t, avltree_walker_t walker, void *arg);
|
---|
[358ec13] | 140 |
|
---|
| 141 | #endif
|
---|
| 142 |
|
---|
| 143 | /** @}
|
---|
| 144 | */
|
---|