]> git.sur5r.net Git - openldap/blob - include/avl.h
Minor fixes to complete backout of initialization/startup changes.
[openldap] / include / avl.h
1 /*
2  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted only
6  * as authorized by the OpenLDAP Public License.  A copy of this
7  * license is available at http://www.OpenLDAP.org/license.html or
8  * in file LICENSE in the top-level directory of the distribution.
9  */
10 /* Portions
11  * Copyright (c) 1993 Regents of the University of Michigan.
12  * All rights reserved.
13  *
14  * Redistribution and use in source and binary forms are permitted
15  * provided that this notice is preserved and that due credit is given
16  * to the University of Michigan at Ann Arbor. The name of the University
17  * may not be used to endorse or promote products derived from this
18  * software without specific prior written permission. This software
19  * is provided ``as is'' without express or implied warranty.
20  */
21 /* avl.h - avl tree definitions */
22
23
24 #ifndef _AVL
25 #define _AVL
26
27 #include <ldap_cdefs.h>
28
29 /*
30  * this structure represents a generic avl tree node.
31  */
32
33 LDAP_BEGIN_DECL
34
35 typedef struct avlnode {
36         caddr_t         avl_data;
37         signed char             avl_bf;
38         struct avlnode  *avl_left;
39         struct avlnode  *avl_right;
40 } Avlnode;
41
42 #define NULLAVL ((Avlnode *) NULL)
43
44 /* balance factor values */
45 #define LH      (-1)
46 #define EH      0
47 #define RH      1
48
49 /* avl routines */
50 #define avl_getone(x)   ((x) == 0 ? 0 : (x)->avl_data)
51 #define avl_onenode(x)  ((x) == 0 || ((x)->avl_left == 0 && (x)->avl_right == 0))
52
53 /* looks like this function pointer is not used consistently */
54 /* typedef int  (*IFP)LDAP_P((caddr_t, caddr_t)); */
55 typedef int     (*IFP)();
56
57 LDAP_F int
58 avl_free LDAP_P(( Avlnode *root, IFP dfree ));
59
60 LDAP_F int
61 avl_insert LDAP_P((Avlnode **, caddr_t, IFP, IFP));
62
63 LDAP_F caddr_t
64 avl_delete LDAP_P((Avlnode **, caddr_t, IFP));
65
66 LDAP_F caddr_t
67 avl_find LDAP_P((Avlnode *, caddr_t, IFP));
68
69 LDAP_F caddr_t
70 avl_find_lin LDAP_P((Avlnode *, caddr_t, IFP));
71
72 LDAP_F caddr_t
73 avl_getfirst LDAP_P((Avlnode *));
74
75 #ifdef AVL_REENTRANT
76 /* ??? avl.c does not provide this version ??? */
77 LDAP_F caddr_t
78 avl_getnext LDAP_P((Avlnode *, caddr_t ));
79 #else
80 LDAP_F caddr_t
81 avl_getnext LDAP_P((void));
82 #endif
83
84 LDAP_F int
85 avl_dup_error LDAP_P((void));
86
87 LDAP_F int
88 avl_dup_ok LDAP_P((void));
89
90 LDAP_F int
91 avl_apply LDAP_P((Avlnode *, IFP, caddr_t, int, int));
92
93 LDAP_F int
94 avl_prefixapply LDAP_P((Avlnode *, caddr_t, IFP, caddr_t, IFP, caddr_t, int));
95
96 /* apply traversal types */
97 #define AVL_PREORDER    1
98 #define AVL_INORDER     2
99 #define AVL_POSTORDER   3
100 /* what apply returns if it ran out of nodes */
101 #define AVL_NOMORE      (-6)
102
103 LDAP_END_DECL
104
105 #endif /* _AVL */