splay-tree.h 5.74 KB
Newer Older
1
/* A splay-tree datatype.  
2
   Copyright 1998, 1999, 2000, 2002 Free Software Foundation, Inc.
3 4
   Contributed by Mark Mitchell (mark@markmitchell.com).

5
This file is part of GCC.
6
   
7
GCC is free software; you can redistribute it and/or modify it
8 9 10 11
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

12
GCC is distributed in the hope that it will be useful, but
13 14 15 16 17
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
18
along with GCC; see the file COPYING.  If not, write to
19 20 21 22
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.  */

/* For an easily readable description of splay-trees, see:
23 24 25 26 27 28 29 30 31 32 33 34 35 36

     Lewis, Harry R. and Denenberg, Larry.  Data Structures and Their
     Algorithms.  Harper-Collins, Inc.  1991.  

   The major feature of splay trees is that all basic tree operations
   are amortized O(log n) time for a tree with n nodes.  */

#ifndef _SPLAY_TREE_H
#define _SPLAY_TREE_H

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

37
#include "ansidecl.h"
38

39 40 41 42
#ifndef GTY
#define GTY(X)
#endif

43 44 45 46 47 48 49 50
/* Use typedefs for the key and data types to facilitate changing
   these types, if necessary.  These types should be sufficiently wide
   that any pointer or scalar can be cast to these types, and then
   cast back, without loss of precision.  */
typedef unsigned long int splay_tree_key;
typedef unsigned long int splay_tree_value;

/* Forward declaration for a node in the tree.  */
51
typedef struct splay_tree_node_s *splay_tree_node;
52 53 54

/* The type of a function which compares two splay-tree keys.  The
   function should return values as for qsort.  */
55
typedef int (*splay_tree_compare_fn) PARAMS((splay_tree_key, splay_tree_key));
56 57 58

/* The type of a function used to deallocate any resources associated
   with the key.  */
59
typedef void (*splay_tree_delete_key_fn) PARAMS((splay_tree_key));
60 61 62

/* The type of a function used to deallocate any resources associated
   with the value.  */
63
typedef void (*splay_tree_delete_value_fn) PARAMS((splay_tree_value));
64 65

/* The type of a function used to iterate over the tree.  */
66
typedef int (*splay_tree_foreach_fn) PARAMS((splay_tree_node, void*));
67

68 69 70 71
/* The type of a function used to allocate memory for tree root and
   node structures.  The first argument is the number of bytes needed;
   the second is a data pointer the splay tree functions pass through
   to the allocator.  This function must never return zero.  */
72
typedef PTR (*splay_tree_allocate_fn) PARAMS((int, void *));
73 74 75 76 77 78 79

/* The type of a function used to free memory allocated using the
   corresponding splay_tree_allocate_fn.  The first argument is the
   memory to be freed; the latter is a data pointer the splay tree
   functions pass through to the freer.  */
typedef void (*splay_tree_deallocate_fn) PARAMS((void *, void *));

80
/* The nodes in the splay tree.  */
81
struct splay_tree_node_s GTY(())
82 83
{
  /* The key.  */
84
  splay_tree_key GTY ((use_param1)) key;
85 86

  /* The value.  */
87
  splay_tree_value GTY ((use_param2)) value;
88 89

  /* The left and right children, respectively.  */
90 91
  splay_tree_node GTY ((use_params)) left;
  splay_tree_node GTY ((use_params)) right;
92 93 94
};

/* The splay tree itself.  */
95
struct splay_tree_s GTY(())
96 97
{
  /* The root of the tree.  */
98
  splay_tree_node GTY ((use_params)) root;
99 100 101 102 103 104 105 106 107

  /* The comparision function.  */
  splay_tree_compare_fn comp;

  /* The deallocate-key function.  NULL if no cleanup is necessary.  */
  splay_tree_delete_key_fn delete_key;

  /* The deallocate-value function.  NULL if no cleanup is necessary.  */
  splay_tree_delete_value_fn delete_value;
108 109 110 111

  /* Allocate/free functions, and a data pointer to pass to them.  */
  splay_tree_allocate_fn allocate;
  splay_tree_deallocate_fn deallocate;
112
  PTR GTY((skip)) allocate_data;
113

114 115
};
typedef struct splay_tree_s *splay_tree;
116 117 118 119

extern splay_tree splay_tree_new        PARAMS((splay_tree_compare_fn,
					        splay_tree_delete_key_fn,
					        splay_tree_delete_value_fn));
120 121 122 123 124 125 126
extern splay_tree splay_tree_new_with_allocator
                                        PARAMS((splay_tree_compare_fn,
					        splay_tree_delete_key_fn,
					        splay_tree_delete_value_fn,
                                                splay_tree_allocate_fn,
                                                splay_tree_deallocate_fn,
                                                void *));
127
extern void splay_tree_delete           PARAMS((splay_tree));
128 129
extern splay_tree_node splay_tree_insert          
		                        PARAMS((splay_tree,
130 131
					        splay_tree_key,
					        splay_tree_value));
132 133
extern void splay_tree_remove		PARAMS((splay_tree,
						splay_tree_key));
134 135 136
extern splay_tree_node splay_tree_lookup   
                                        PARAMS((splay_tree,
					        splay_tree_key));
137 138 139 140 141 142
extern splay_tree_node splay_tree_predecessor
                                        PARAMS((splay_tree,
						splay_tree_key));
extern splay_tree_node splay_tree_successor
                                        PARAMS((splay_tree,
						splay_tree_key));
143 144 145 146
extern splay_tree_node splay_tree_max
                                        PARAMS((splay_tree));
extern splay_tree_node splay_tree_min
                                        PARAMS((splay_tree));
147 148 149
extern int splay_tree_foreach           PARAMS((splay_tree,
					        splay_tree_foreach_fn,
					        void*));
150 151
extern int splay_tree_compare_ints      PARAMS((splay_tree_key,
						splay_tree_key));
152 153
extern int splay_tree_compare_pointers  PARAMS((splay_tree_key,
						splay_tree_key));
154 155 156 157 158 159
					       
#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* _SPLAY_TREE_H */