Initial revision
[binutils.git] / libiberty / splay-tree.c
blobb6bb5a6a8f05d9377ae3fcf4699ca352ed745bd4
1 /* A splay-tree datatype.
2 Copyright (C) 1998 Free Software Foundation, Inc.
3 Contributed by Mark Mitchell (mark@markmitchell.com).
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* For an easily readable description of splay-trees, see:
24 Lewis, Harry R. and Denenberg, Larry. Data Structures and Their
25 Algorithms. Harper-Collins, Inc. 1991. */
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
31 #ifdef HAVE_STDLIB_H
32 #include <stdlib.h>
33 #endif
35 #include "libiberty.h"
36 #include "splay-tree.h"
38 static void splay_tree_delete_helper PARAMS((splay_tree,
39 splay_tree_node));
40 static void splay_tree_splay PARAMS((splay_tree,
41 splay_tree_key));
42 static splay_tree_node splay_tree_splay_helper
43 PARAMS((splay_tree,
44 splay_tree_key,
45 splay_tree_node*,
46 splay_tree_node*,
47 splay_tree_node*));
48 static int splay_tree_foreach_helper PARAMS((splay_tree,
49 splay_tree_node,
50 splay_tree_foreach_fn,
51 void*));
53 /* Deallocate NODE (a member of SP), and all its sub-trees. */
55 static void
56 splay_tree_delete_helper (sp, node)
57 splay_tree sp;
58 splay_tree_node node;
60 if (!node)
61 return;
63 splay_tree_delete_helper (sp, node->left);
64 splay_tree_delete_helper (sp, node->right);
66 if (sp->delete_key)
67 (*sp->delete_key)(node->key);
68 if (sp->delete_value)
69 (*sp->delete_value)(node->value);
71 free ((char*) node);
74 /* Help splay SP around KEY. PARENT and GRANDPARENT are the parent
75 and grandparent, respectively, of NODE. */
77 static splay_tree_node
78 splay_tree_splay_helper (sp, key, node, parent, grandparent)
79 splay_tree sp;
80 splay_tree_key key;
81 splay_tree_node *node;
82 splay_tree_node *parent;
83 splay_tree_node *grandparent;
85 splay_tree_node *next;
86 splay_tree_node n;
87 int comparison;
89 n = *node;
91 if (!n)
92 return *parent;
94 comparison = (*sp->comp) (key, n->key);
96 if (comparison == 0)
97 /* We've found the target. */
98 next = 0;
99 else if (comparison < 0)
100 /* The target is to the left. */
101 next = &n->left;
102 else
103 /* The target is to the right. */
104 next = &n->right;
106 if (next)
108 /* Continue down the tree. */
109 n = splay_tree_splay_helper (sp, key, next, node, parent);
111 /* The recursive call will change the place to which NODE
112 points. */
113 if (*node != n)
114 return n;
117 if (!parent)
118 /* NODE is the root. We are done. */
119 return n;
121 /* First, handle the case where there is no grandparent (i.e.,
122 *PARENT is the root of the tree.) */
123 if (!grandparent)
125 if (n == (*parent)->left)
127 *node = n->right;
128 n->right = *parent;
130 else
132 *node = n->left;
133 n->left = *parent;
135 *parent = n;
136 return n;
139 /* Next handle the cases where both N and *PARENT are left children,
140 or where both are right children. */
141 if (n == (*parent)->left && *parent == (*grandparent)->left)
143 splay_tree_node p = *parent;
145 (*grandparent)->left = p->right;
146 p->right = *grandparent;
147 p->left = n->right;
148 n->right = p;
149 *grandparent = n;
150 return n;
152 else if (n == (*parent)->right && *parent == (*grandparent)->right)
154 splay_tree_node p = *parent;
156 (*grandparent)->right = p->left;
157 p->left = *grandparent;
158 p->right = n->left;
159 n->left = p;
160 *grandparent = n;
161 return n;
164 /* Finally, deal with the case where N is a left child, but *PARENT
165 is a right child, or vice versa. */
166 if (n == (*parent)->left)
168 (*parent)->left = n->right;
169 n->right = *parent;
170 (*grandparent)->right = n->left;
171 n->left = *grandparent;
172 *grandparent = n;
173 return n;
175 else
177 (*parent)->right = n->left;
178 n->left = *parent;
179 (*grandparent)->left = n->right;
180 n->right = *grandparent;
181 *grandparent = n;
182 return n;
186 /* Splay SP around KEY. */
188 static void
189 splay_tree_splay (sp, key)
190 splay_tree sp;
191 splay_tree_key key;
193 if (sp->root == 0)
194 return;
196 splay_tree_splay_helper (sp, key, &sp->root,
197 /*grandparent=*/0, /*parent=*/0);
200 /* Call FN, passing it the DATA, for every node below NODE, all of
201 which are from SP, following an in-order traversal. If FN every
202 returns a non-zero value, the iteration ceases immediately, and the
203 value is returned. Otherwise, this function returns 0. */
205 static int
206 splay_tree_foreach_helper (sp, node, fn, data)
207 splay_tree sp;
208 splay_tree_node node;
209 splay_tree_foreach_fn fn;
210 void* data;
212 int val;
214 if (!node)
215 return 0;
217 val = splay_tree_foreach_helper (sp, node->left, fn, data);
218 if (val)
219 return val;
221 val = (*fn)(node, data);
222 if (val)
223 return val;
225 return splay_tree_foreach_helper (sp, node->right, fn, data);
228 /* Allocate a new splay tree, using COMPARE_FN to compare nodes,
229 DELETE_KEY_FN to deallocate keys, and DELETE_VALUE_FN to deallocate
230 values. */
232 splay_tree
233 splay_tree_new (compare_fn, delete_key_fn, delete_value_fn)
234 splay_tree_compare_fn compare_fn;
235 splay_tree_delete_key_fn delete_key_fn;
236 splay_tree_delete_value_fn delete_value_fn;
238 splay_tree sp = (splay_tree) xmalloc (sizeof (struct splay_tree));
239 sp->root = 0;
240 sp->comp = compare_fn;
241 sp->delete_key = delete_key_fn;
242 sp->delete_value = delete_value_fn;
244 return sp;
247 /* Deallocate SP. */
249 void
250 splay_tree_delete (sp)
251 splay_tree sp;
253 splay_tree_delete_helper (sp, sp->root);
254 free ((char*) sp);
257 /* Insert a new node (associating KEY with DATA) into SP. If a
258 previous node with the indicated KEY exists, its data is replaced
259 with the new value. */
261 void
262 splay_tree_insert (sp, key, value)
263 splay_tree sp;
264 splay_tree_key key;
265 splay_tree_value value;
267 int comparison;
269 splay_tree_splay (sp, key);
271 if (sp->root)
272 comparison = (*sp->comp)(sp->root->key, key);
274 if (sp->root && comparison == 0)
276 /* If the root of the tree already has the indicated KEY, just
277 replace the value with VALUE. */
278 if (sp->delete_value)
279 (*sp->delete_value)(sp->root->value);
280 sp->root->value = value;
282 else
284 /* Create a new node, and insert it at the root. */
285 splay_tree_node node;
287 node = (splay_tree_node) xmalloc (sizeof (struct splay_tree_node));
288 node->key = key;
289 node->value = value;
291 if (!sp->root)
292 node->left = node->right = 0;
293 else if (comparison < 0)
295 node->left = sp->root;
296 node->right = node->left->right;
297 node->left->right = 0;
299 else
301 node->right = sp->root;
302 node->left = node->right->left;
303 node->right->left = 0;
306 sp->root = node;
310 /* Lookup KEY in SP, returning VALUE if present, and NULL
311 otherwise. */
313 splay_tree_node
314 splay_tree_lookup (sp, key)
315 splay_tree sp;
316 splay_tree_key key;
318 splay_tree_splay (sp, key);
320 if (sp->root && (*sp->comp)(sp->root->key, key) == 0)
321 return sp->root;
322 else
323 return 0;
326 /* Call FN, passing it the DATA, for every node in SP, following an
327 in-order traversal. If FN every returns a non-zero value, the
328 iteration ceases immediately, and the value is returned.
329 Otherwise, this function returns 0. */
332 splay_tree_foreach (sp, fn, data)
333 splay_tree sp;
334 splay_tree_foreach_fn fn;
335 void *data;
337 return splay_tree_foreach_helper (sp, sp->root, fn, data);
340 /* Splay-tree comparison function, treating the keys as ints. */
343 splay_tree_compare_ints (k1, k2)
344 splay_tree_key k1;
345 splay_tree_key k2;
347 if ((int) k1 < (int) k2)
348 return -1;
349 else if ((int) k1 > (int) k2)
350 return 1;
351 else
352 return 0;
355 /* Splay-tree comparison function, treating the keys as pointers. */
358 splay_tree_compare_pointers (k1, k2)
359 splay_tree_key k1;
360 splay_tree_key k2;
362 if ((char*) k1 < (char*) k2)
363 return -1;
364 else if ((char*) k1 > (char*) k2)
365 return 1;
366 else
367 return 0;