tinc/lib/avl_tree.h

146 lines
4.1 KiB
C
Raw Normal View History

2019-08-26 11:44:36 +00:00
/*
avl_tree.h -- header file for avl_tree.c
Copyright (C) 1998 Michael H. Buselli
2019-08-26 11:44:37 +00:00
2000-2005 Ivo Timmermans,
2000-2006 Guus Sliepen <guus@tinc-vpn.org>
2019-08-26 11:44:36 +00:00
2000-2005 Wessel Dankers <wsl@tinc-vpn.org>
2019-08-26 11:44:36 +00:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Original AVL tree library by Michael H. Buselli <cosine@cosine.org>.
2019-08-26 11:44:36 +00:00
Modified 2000-11-28 by Wessel Dankers <wsl@tinc-vpn.org> to use counts
2019-08-26 11:44:36 +00:00
instead of depths, to add the ->next and ->prev and to generally obfuscate
the code. Mail me if you found a bug.
Cleaned up and incorporated some of the ideas from the red-black tree
2019-08-26 11:44:36 +00:00
library for inclusion into tinc (http://www.tinc-vpn.org/) by
Guus Sliepen <guus@tinc-vpn.org>.
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:37 +00:00
$Id: avl_tree.h 1452 2006-04-26 13:52:58Z guus $
2019-08-26 11:44:36 +00:00
*/
#ifndef __AVL_TREE_H__
#define __AVL_TREE_H__
#ifndef AVL_DEPTH
2019-08-26 11:44:36 +00:00
#ifndef AVL_COUNT
#define AVL_DEPTH
#endif
2019-08-26 11:44:36 +00:00
#endif
typedef struct avl_node_t {
2019-08-26 11:44:36 +00:00
/* Linked list part */
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:36 +00:00
struct avl_node_t *next;
struct avl_node_t *prev;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:36 +00:00
/* Tree part */
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:36 +00:00
struct avl_node_t *parent;
struct avl_node_t *left;
struct avl_node_t *right;
2019-08-26 11:44:36 +00:00
#ifdef AVL_COUNT
2019-08-26 11:44:36 +00:00
unsigned int count;
2019-08-26 11:44:36 +00:00
#endif
#ifdef AVL_DEPTH
2019-08-26 11:44:36 +00:00
unsigned char depth;
2019-08-26 11:44:36 +00:00
#endif
2019-08-26 11:44:36 +00:00
/* Payload */
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:36 +00:00
void *data;
2019-08-26 11:44:36 +00:00
} avl_node_t;
2019-08-26 11:44:36 +00:00
typedef int (*avl_compare_t)(const void *, const void *);
typedef void (*avl_action_t)(const void *);
typedef void (*avl_action_node_t)(const avl_node_t *);
2019-08-26 11:44:36 +00:00
typedef struct avl_tree_t {
2019-08-26 11:44:36 +00:00
/* Linked list part */
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:36 +00:00
avl_node_t *head;
avl_node_t *tail;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:36 +00:00
/* Tree part */
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:36 +00:00
avl_node_t *root;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:36 +00:00
avl_compare_t compare;
avl_action_t delete;
2019-08-26 11:44:36 +00:00
} avl_tree_t;
/* (De)constructors */
extern avl_tree_t *avl_alloc_tree(avl_compare_t, avl_action_t);
extern void avl_free_tree(avl_tree_t *);
extern avl_node_t *avl_alloc_node(void);
extern void avl_free_node(avl_tree_t *tree, avl_node_t *);
/* Insertion and deletion */
extern avl_node_t *avl_insert(avl_tree_t *, void *);
extern avl_node_t *avl_insert_node(avl_tree_t *, avl_node_t *);
extern void avl_insert_top(avl_tree_t *, avl_node_t *);
extern void avl_insert_before(avl_tree_t *, avl_node_t *, avl_node_t *);
extern void avl_insert_after(avl_tree_t *, avl_node_t *, avl_node_t *);
extern avl_node_t *avl_unlink(avl_tree_t *, void *);
extern void avl_unlink_node(avl_tree_t *tree, avl_node_t *);
extern void avl_delete(avl_tree_t *, void *);
extern void avl_delete_node(avl_tree_t *, avl_node_t *);
/* Fast tree cleanup */
extern void avl_delete_tree(avl_tree_t *);
/* Searching */
extern void *avl_search(const avl_tree_t *, const void *);
extern void *avl_search_closest(const avl_tree_t *, const void *, int *);
extern void *avl_search_closest_smaller(const avl_tree_t *, const void *);
extern void *avl_search_closest_greater(const avl_tree_t *, const void *);
extern avl_node_t *avl_search_node(const avl_tree_t *, const void *);
extern avl_node_t *avl_search_closest_node(const avl_tree_t *, const void *, int *);
extern avl_node_t *avl_search_closest_smaller_node(const avl_tree_t *, const void *);
extern avl_node_t *avl_search_closest_greater_node(const avl_tree_t *, const void *);
/* Tree walking */
2019-08-26 11:44:36 +00:00
extern void avl_foreach(const avl_tree_t *, avl_action_t);
extern void avl_foreach_node(const avl_tree_t *, avl_action_t);
2019-08-26 11:44:36 +00:00
/* Indexing */
#ifdef AVL_COUNT
2019-08-26 11:44:36 +00:00
extern unsigned int avl_count(const avl_tree_t *);
2019-08-26 11:44:36 +00:00
extern avl_node_t *avl_get_node(const avl_tree_t *, unsigned int);
extern unsigned int avl_index(const avl_node_t *);
#endif
#ifdef AVL_DEPTH
2019-08-26 11:44:36 +00:00
extern unsigned int avl_depth(const avl_tree_t *);
2019-08-26 11:44:36 +00:00
#endif
2019-08-26 11:44:36 +00:00
#endif /* __AVL_TREE_H__ */