2dfbd89275e25181e186715dafada90b6ee20418
[cacao.git] / src / toolbox / tree.h
1 /* toolbox/tree.h - binary tree management
2
3    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
4    Institut f. Computersprachen, TU Wien
5    R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser, M. Probst,
6    S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich,
7    J. Wenninger
8
9    This file is part of CACAO.
10
11    This program is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License as
13    published by the Free Software Foundation; either version 2, or (at
14    your option) any later version.
15
16    This program is distributed in the hope that it will be useful, but
17    WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19    General Public License for more details.
20
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24    02111-1307, USA.
25
26    Contact: cacao@complang.tuwien.ac.at
27
28    Authors: Reinhard Grafl
29
30    $Id: tree.h 684 2003-12-02 16:50:17Z twisti $
31
32 */
33
34
35 #ifndef _TREE_H
36 #define _TREE_H
37
38 typedef int (*treeelementcomperator) (void *key, void * element);
39
40
41 typedef struct treenode {
42         struct treenode *left,*right;
43         struct treenode *parent;
44         
45         void *element;
46 } treenode;
47
48 typedef struct {
49         int usedump;
50         treeelementcomperator comperator;       
51
52         treenode *top;
53         treenode *active;
54 } tree;
55
56
57 /* function prototypes */
58
59 tree *tree_new(treeelementcomperator comperator);
60 tree *tree_dnew(treeelementcomperator comperator);
61 void tree_free(tree *t);
62
63 void tree_add(tree *t, void *element, void *key);
64 void *tree_find(tree *t, void *key);
65
66 void *tree_this(tree *t);
67 void *tree_first(tree *t);
68 void *tree_next(tree *t);
69
70 #endif /* _TREE_H */
71
72
73 /*
74  * These are local overrides for various environment variables in Emacs.
75  * Please do not remove this and leave it at the end of the file, where
76  * Emacs will automagically detect them.
77  * ---------------------------------------------------------------------
78  * Local variables:
79  * mode: c
80  * indent-tabs-mode: t
81  * c-basic-offset: 4
82  * tab-width: 4
83  * End:
84  */