Avoid forcing extra newlines when using template files. (#171005)
[glib.git] / glib / gtree.c
blob3eb8667b36cf69db5a820dd45906517bd85d61e7
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
27 /*
28 * MT safe
31 #include "config.h"
33 #include "glib.h"
34 #include "galias.h"
37 typedef struct _GTreeNode GTreeNode;
39 struct _GTree
41 GTreeNode *root;
42 GCompareDataFunc key_compare;
43 GDestroyNotify key_destroy_func;
44 GDestroyNotify value_destroy_func;
45 gpointer key_compare_data;
48 struct _GTreeNode
50 gint balance; /* height (left) - height (right) */
51 GTreeNode *left; /* left subtree */
52 GTreeNode *right; /* right subtree */
53 gpointer key; /* key for this node */
54 gpointer value; /* value stored at this node */
58 static GTreeNode* g_tree_node_new (gpointer key,
59 gpointer value);
60 static void g_tree_node_destroy (GTreeNode *node,
61 GDestroyNotify key_destroy_func,
62 GDestroyNotify value_destroy_func);
63 static GTreeNode* g_tree_node_insert (GTree *tree,
64 GTreeNode *node,
65 gpointer key,
66 gpointer value,
67 gboolean replace,
68 gboolean *inserted);
69 static GTreeNode* g_tree_node_remove (GTree *tree,
70 GTreeNode *node,
71 gconstpointer key,
72 gboolean notify);
73 static GTreeNode* g_tree_node_balance (GTreeNode *node);
74 static GTreeNode* g_tree_node_remove_leftmost (GTreeNode *node,
75 GTreeNode **leftmost);
76 static GTreeNode* g_tree_node_restore_left_balance (GTreeNode *node,
77 gint old_balance);
78 static GTreeNode* g_tree_node_restore_right_balance (GTreeNode *node,
79 gint old_balance);
80 static GTreeNode* g_tree_node_lookup (GTreeNode *node,
81 GCompareDataFunc compare,
82 gpointer comp_data,
83 gconstpointer key);
84 static gint g_tree_node_count (GTreeNode *node);
85 static gint g_tree_node_pre_order (GTreeNode *node,
86 GTraverseFunc traverse_func,
87 gpointer data);
88 static gint g_tree_node_in_order (GTreeNode *node,
89 GTraverseFunc traverse_func,
90 gpointer data);
91 static gint g_tree_node_post_order (GTreeNode *node,
92 GTraverseFunc traverse_func,
93 gpointer data);
94 static gpointer g_tree_node_search (GTreeNode *node,
95 GCompareFunc search_func,
96 gconstpointer data);
97 static gint g_tree_node_height (GTreeNode *node);
98 static GTreeNode* g_tree_node_rotate_left (GTreeNode *node);
99 static GTreeNode* g_tree_node_rotate_right (GTreeNode *node);
100 static void g_tree_node_check (GTreeNode *node);
103 G_LOCK_DEFINE_STATIC (g_tree_global);
104 static GMemChunk *node_mem_chunk = NULL;
105 static GTreeNode *node_free_list = NULL;
108 static GTreeNode*
109 g_tree_node_new (gpointer key,
110 gpointer value)
112 GTreeNode *node;
114 G_LOCK (g_tree_global);
115 if (node_free_list)
117 node = node_free_list;
118 node_free_list = node->right;
120 else
122 if (!node_mem_chunk)
123 node_mem_chunk = g_mem_chunk_new ("GLib GTreeNode mem chunk",
124 sizeof (GTreeNode),
125 1024,
126 G_ALLOC_ONLY);
128 node = g_chunk_new (GTreeNode, node_mem_chunk);
130 G_UNLOCK (g_tree_global);
132 node->balance = 0;
133 node->left = NULL;
134 node->right = NULL;
135 node->key = key;
136 node->value = value;
138 return node;
141 static void
142 g_tree_node_destroy (GTreeNode *node,
143 GDestroyNotify key_destroy_func,
144 GDestroyNotify value_destroy_func)
146 if (node)
148 g_tree_node_destroy (node->right,
149 key_destroy_func, value_destroy_func);
150 g_tree_node_destroy (node->left,
151 key_destroy_func, value_destroy_func);
153 if (key_destroy_func)
154 key_destroy_func (node->key);
155 if (value_destroy_func)
156 value_destroy_func (node->value);
158 #ifdef ENABLE_GC_FRIENDLY
159 node->left = NULL;
160 node->key = NULL;
161 node->value = NULL;
162 #endif /* ENABLE_GC_FRIENDLY */
164 G_LOCK (g_tree_global);
165 node->right = node_free_list;
166 node_free_list = node;
167 G_UNLOCK (g_tree_global);
172 * g_tree_new:
173 * @key_compare_func: the function used to order the nodes in the #GTree.
174 * It should return values similar to the standard strcmp() function -
175 * 0 if the two arguments are equal, a negative value if the first argument
176 * comes before the second, or a positive value if the first argument comes
177 * after the second.
179 * Creates a new #GTree.
181 * Return value: a new #GTree.
183 GTree*
184 g_tree_new (GCompareFunc key_compare_func)
186 g_return_val_if_fail (key_compare_func != NULL, NULL);
188 return g_tree_new_full ((GCompareDataFunc) key_compare_func, NULL,
189 NULL, NULL);
193 * g_tree_new_with_data:
194 * @key_compare_func: qsort()-style comparison function.
195 * @key_compare_data: data to pass to comparison function.
197 * Creates a new #GTree with a comparison function that accepts user data.
198 * See g_tree_new() for more details.
200 * Return value: a new #GTree.
202 GTree*
203 g_tree_new_with_data (GCompareDataFunc key_compare_func,
204 gpointer key_compare_data)
206 g_return_val_if_fail (key_compare_func != NULL, NULL);
208 return g_tree_new_full (key_compare_func, key_compare_data,
209 NULL, NULL);
213 * g_tree_new_full:
214 * @key_compare_func: qsort()-style comparison function.
215 * @key_compare_data: data to pass to comparison function.
216 * @key_destroy_func: a function to free the memory allocated for the key
217 * used when removing the entry from the #GTree or %NULL if you don't
218 * want to supply such a function.
219 * @value_destroy_func: a function to free the memory allocated for the
220 * value used when removing the entry from the #GTree or %NULL if you
221 * don't want to supply such a function.
223 * Creates a new #GTree like g_tree_new() and allows to specify functions
224 * to free the memory allocated for the key and value that get called when
225 * removing the entry from the #GTree.
227 * Return value: a new #GTree.
229 GTree*
230 g_tree_new_full (GCompareDataFunc key_compare_func,
231 gpointer key_compare_data,
232 GDestroyNotify key_destroy_func,
233 GDestroyNotify value_destroy_func)
235 GTree *tree;
237 g_return_val_if_fail (key_compare_func != NULL, NULL);
239 tree = g_new (GTree, 1);
240 tree->root = NULL;
241 tree->key_compare = key_compare_func;
242 tree->key_destroy_func = key_destroy_func;
243 tree->value_destroy_func = value_destroy_func;
244 tree->key_compare_data = key_compare_data;
246 return tree;
250 * g_tree_destroy:
251 * @tree: a #GTree.
253 * Destroys the #GTree. If keys and/or values are dynamically allocated, you
254 * should either free them first or create the #GTree using g_tree_new_full().
255 * In the latter case the destroy functions you supplied will be called on
256 * all keys and values before destroying the #GTree.
258 void
259 g_tree_destroy (GTree *tree)
261 g_return_if_fail (tree != NULL);
263 g_tree_node_destroy (tree->root,
264 tree->key_destroy_func,
265 tree->value_destroy_func);
267 g_free (tree);
271 * g_tree_insert:
272 * @tree: a #GTree.
273 * @key: the key to insert.
274 * @value: the value corresponding to the key.
276 * Inserts a key/value pair into a #GTree. If the given key already exists
277 * in the #GTree its corresponding value is set to the new value. If you
278 * supplied a value_destroy_func when creating the #GTree, the old value is
279 * freed using that function. If you supplied a @key_destroy_func when
280 * creating the #GTree, the passed key is freed using that function.
282 * The tree is automatically 'balanced' as new key/value pairs are added,
283 * so that the distance from the root to every leaf is as small as possible.
285 void
286 g_tree_insert (GTree *tree,
287 gpointer key,
288 gpointer value)
290 gboolean inserted;
292 g_return_if_fail (tree != NULL);
294 inserted = FALSE;
295 tree->root = g_tree_node_insert (tree,
296 tree->root,
297 key, value,
298 FALSE, &inserted);
302 * g_tree_replace:
303 * @tree: a #GTree.
304 * @key: the key to insert.
305 * @value: the value corresponding to the key.
307 * Inserts a new key and value into a #GTree similar to g_tree_insert().
308 * The difference is that if the key already exists in the #GTree, it gets
309 * replaced by the new key. If you supplied a @value_destroy_func when
310 * creating the #GTree, the old value is freed using that function. If you
311 * supplied a @key_destroy_func when creating the #GTree, the old key is
312 * freed using that function.
314 * The tree is automatically 'balanced' as new key/value pairs are added,
315 * so that the distance from the root to every leaf is as small as possible.
317 void
318 g_tree_replace (GTree *tree,
319 gpointer key,
320 gpointer value)
322 gboolean inserted;
324 g_return_if_fail (tree != NULL);
326 inserted = FALSE;
327 tree->root = g_tree_node_insert (tree,
328 tree->root,
329 key, value,
330 TRUE, &inserted);
334 * g_tree_remove:
335 * @tree: a #GTree.
336 * @key: the key to remove.
338 * Removes a key/value pair from a #GTree.
340 * If the #GTree was created using g_tree_new_full(), the key and value
341 * are freed using the supplied destroy functions, otherwise you have to
342 * make sure that any dynamically allocated values are freed yourself.
344 void
345 g_tree_remove (GTree *tree,
346 gconstpointer key)
348 g_return_if_fail (tree != NULL);
350 tree->root = g_tree_node_remove (tree, tree->root, key, TRUE);
354 * g_tree_steal:
355 * @tree: a #GTree.
356 * @key: the key to remove.
358 * Removes a key and its associated value from a #GTree without calling
359 * the key and value destroy functions.
361 void
362 g_tree_steal (GTree *tree,
363 gconstpointer key)
365 g_return_if_fail (tree != NULL);
367 tree->root = g_tree_node_remove (tree, tree->root, key, FALSE);
371 * g_tree_lookup:
372 * @tree: a #GTree.
373 * @key: the key to look up.
375 * Gets the value corresponding to the given key. Since a #GTree is
376 * automatically balanced as key/value pairs are added, key lookup is very
377 * fast.
379 * Return value: the value corresponding to the key.
381 gpointer
382 g_tree_lookup (GTree *tree,
383 gconstpointer key)
385 GTreeNode *node;
387 g_return_val_if_fail (tree != NULL, NULL);
389 node = g_tree_node_lookup (tree->root,
390 tree->key_compare, tree->key_compare_data, key);
392 return node ? node->value : NULL;
396 * g_tree_lookup_extended:
397 * @tree: a #GTree.
398 * @lookup_key: the key to look up.
399 * @orig_key: returns the original key.
400 * @value: returns the value associated with the key.
402 * Looks up a key in the #GTree, returning the original key and the
403 * associated value and a #gboolean which is %TRUE if the key was found. This
404 * is useful if you need to free the memory allocated for the original key,
405 * for example before calling g_tree_remove().
407 * Return value: %TRUE if the key was found in the #GTree.
409 gboolean
410 g_tree_lookup_extended (GTree *tree,
411 gconstpointer lookup_key,
412 gpointer *orig_key,
413 gpointer *value)
415 GTreeNode *node;
417 g_return_val_if_fail (tree != NULL, FALSE);
419 node = g_tree_node_lookup (tree->root,
420 tree->key_compare, tree->key_compare_data, lookup_key);
422 if (node)
424 if (orig_key)
425 *orig_key = node->key;
426 if (value)
427 *value = node->value;
428 return TRUE;
430 else
431 return FALSE;
435 * g_tree_foreach:
436 * @tree: a #GTree.
437 * @func: the function to call for each node visited. If this function
438 * returns %TRUE, the traversal is stopped.
439 * @user_data: user data to pass to the function.
441 * Calls the given function for each of the key/value pairs in the #GTree.
442 * The function is passed the key and value of each pair, and the given
443 * @data parameter. The tree is traversed in sorted order.
445 * The tree may not be modified while iterating over it (you can't
446 * add/remove items). To remove all items matching a predicate, you need
447 * to add each item to a list in your #GTraverseFunc as you walk over
448 * the tree, then walk the list and remove each item.
450 void
451 g_tree_foreach (GTree *tree,
452 GTraverseFunc func,
453 gpointer user_data)
455 g_return_if_fail (tree != NULL);
457 if (!tree->root)
458 return;
460 g_tree_node_in_order (tree->root, func, user_data);
464 * g_tree_traverse:
465 * @tree: a #GTree.
466 * @traverse_func: the function to call for each node visited. If this
467 * function returns %TRUE, the traversal is stopped.
468 * @traverse_type: the order in which nodes are visited, one of %G_IN_ORDER,
469 * %G_PRE_ORDER and %G_POST_ORDER.
470 * @user_data: user data to pass to the function.
472 * Calls the given function for each node in the #GTree.
474 * Deprecated: The order of a balanced tree is somewhat arbitrary. If you
475 * just want to visit all nodes in sorted order, use g_tree_foreach()
476 * instead. If you really need to visit nodes in a different order, consider
477 * using an <link linkend="glib-N-ary-Trees">N-ary Tree</link>.
479 void
480 g_tree_traverse (GTree *tree,
481 GTraverseFunc traverse_func,
482 GTraverseType traverse_type,
483 gpointer user_data)
485 g_return_if_fail (tree != NULL);
487 if (!tree->root)
488 return;
490 switch (traverse_type)
492 case G_PRE_ORDER:
493 g_tree_node_pre_order (tree->root, traverse_func, user_data);
494 break;
496 case G_IN_ORDER:
497 g_tree_node_in_order (tree->root, traverse_func, user_data);
498 break;
500 case G_POST_ORDER:
501 g_tree_node_post_order (tree->root, traverse_func, user_data);
502 break;
504 case G_LEVEL_ORDER:
505 g_warning ("g_tree_traverse(): traverse type G_LEVEL_ORDER isn't implemented.");
506 break;
511 * g_tree_search:
512 * @tree: a #GTree.
513 * @search_func: a function used to search the #GTree.
514 * @user_data: the data passed as the second argument to the @search_func
515 * function.
517 * Searches a #GTree using @search_func.
519 * The @search_func is called with a pointer to the key of a key/value pair in the tree,
520 * and the passed in @user_data. If @search_func returns 0 for a key/value pair, then
521 * g_tree_search_func() will return the value of that pair. If @search_func returns -1,
522 * searching will proceed among the key/value pairs that have a smaller key; if @search_func
523 * returns 1, searching will proceed among the key/value pairs that have a larger key.
525 * Return value: the value corresponding to the found key, or %NULL if the key
526 * was not found.
528 gpointer
529 g_tree_search (GTree *tree,
530 GCompareFunc search_func,
531 gconstpointer user_data)
533 g_return_val_if_fail (tree != NULL, NULL);
535 if (tree->root)
536 return g_tree_node_search (tree->root, search_func, user_data);
537 else
538 return NULL;
542 * g_tree_height:
543 * @tree: a #GTree.
545 * Gets the height of a #GTree.
547 * If the #GTree contains no nodes, the height is 0.
548 * If the #GTree contains only one root node the height is 1.
549 * If the root node has children the height is 2, etc.
551 * Return value: the height of the #GTree.
553 gint
554 g_tree_height (GTree *tree)
556 g_return_val_if_fail (tree != NULL, 0);
558 if (tree->root)
559 return g_tree_node_height (tree->root);
560 else
561 return 0;
565 * g_tree_nnodes:
566 * @tree: a #GTree.
568 * Gets the number of nodes in a #GTree.
570 * Return value: the number of nodes in the #GTree.
572 gint
573 g_tree_nnodes (GTree *tree)
575 g_return_val_if_fail (tree != NULL, 0);
577 if (tree->root)
578 return g_tree_node_count (tree->root);
579 else
580 return 0;
583 static GTreeNode*
584 g_tree_node_insert (GTree *tree,
585 GTreeNode *node,
586 gpointer key,
587 gpointer value,
588 gboolean replace,
589 gboolean *inserted)
591 gint old_balance;
592 gint cmp;
594 if (!node)
596 *inserted = TRUE;
597 return g_tree_node_new (key, value);
600 cmp = tree->key_compare (key, node->key, tree->key_compare_data);
601 if (cmp == 0)
603 *inserted = FALSE;
605 if (tree->value_destroy_func)
606 tree->value_destroy_func (node->value);
608 node->value = value;
610 if (replace)
612 if (tree->key_destroy_func)
613 tree->key_destroy_func (node->key);
615 node->key = key;
617 else
619 /* free the passed key */
620 if (tree->key_destroy_func)
621 tree->key_destroy_func (key);
624 return node;
627 if (cmp < 0)
629 if (node->left)
631 old_balance = node->left->balance;
632 node->left = g_tree_node_insert (tree,
633 node->left,
634 key, value,
635 replace, inserted);
637 if ((old_balance != node->left->balance) && node->left->balance)
638 node->balance -= 1;
640 else
642 *inserted = TRUE;
643 node->left = g_tree_node_new (key, value);
644 node->balance -= 1;
647 else if (cmp > 0)
649 if (node->right)
651 old_balance = node->right->balance;
652 node->right = g_tree_node_insert (tree,
653 node->right,
654 key, value,
655 replace, inserted);
657 if ((old_balance != node->right->balance) && node->right->balance)
658 node->balance += 1;
660 else
662 *inserted = TRUE;
663 node->right = g_tree_node_new (key, value);
664 node->balance += 1;
668 if (*inserted)
670 if ((node->balance < -1) || (node->balance > 1))
671 node = g_tree_node_balance (node);
674 return node;
677 static GTreeNode*
678 g_tree_node_remove (GTree *tree,
679 GTreeNode *node,
680 gconstpointer key,
681 gboolean notify)
683 GTreeNode *new_root;
684 gint old_balance;
685 gint cmp;
687 if (!node)
688 return NULL;
690 cmp = tree->key_compare (key, node->key, tree->key_compare_data);
691 if (cmp == 0)
693 GTreeNode *garbage;
695 garbage = node;
697 if (!node->right)
699 node = node->left;
701 else
703 old_balance = node->right->balance;
704 node->right = g_tree_node_remove_leftmost (node->right, &new_root);
705 new_root->left = node->left;
706 new_root->right = node->right;
707 new_root->balance = node->balance;
708 node = g_tree_node_restore_right_balance (new_root, old_balance);
711 if (notify)
713 if (tree->key_destroy_func)
714 tree->key_destroy_func (garbage->key);
715 if (tree->value_destroy_func)
716 tree->value_destroy_func (garbage->value);
719 #ifdef ENABLE_GC_FRIENDLY
720 garbage->left = NULL;
721 garbage->key = NULL;
722 garbage->value = NULL;
723 #endif /* ENABLE_GC_FRIENDLY */
725 G_LOCK (g_tree_global);
726 garbage->right = node_free_list;
727 node_free_list = garbage;
728 G_UNLOCK (g_tree_global);
730 else if (cmp < 0)
732 if (node->left)
734 old_balance = node->left->balance;
735 node->left = g_tree_node_remove (tree, node->left, key, notify);
736 node = g_tree_node_restore_left_balance (node, old_balance);
739 else if (cmp > 0)
741 if (node->right)
743 old_balance = node->right->balance;
744 node->right = g_tree_node_remove (tree, node->right, key, notify);
745 node = g_tree_node_restore_right_balance (node, old_balance);
749 return node;
752 static GTreeNode*
753 g_tree_node_balance (GTreeNode *node)
755 if (node->balance < -1)
757 if (node->left->balance > 0)
758 node->left = g_tree_node_rotate_left (node->left);
759 node = g_tree_node_rotate_right (node);
761 else if (node->balance > 1)
763 if (node->right->balance < 0)
764 node->right = g_tree_node_rotate_right (node->right);
765 node = g_tree_node_rotate_left (node);
768 return node;
771 static GTreeNode*
772 g_tree_node_remove_leftmost (GTreeNode *node,
773 GTreeNode **leftmost)
775 gint old_balance;
777 if (!node->left)
779 *leftmost = node;
780 return node->right;
783 old_balance = node->left->balance;
784 node->left = g_tree_node_remove_leftmost (node->left, leftmost);
785 return g_tree_node_restore_left_balance (node, old_balance);
788 static GTreeNode*
789 g_tree_node_restore_left_balance (GTreeNode *node,
790 gint old_balance)
792 if (!node->left)
793 node->balance += 1;
794 else if ((node->left->balance != old_balance) &&
795 (node->left->balance == 0))
796 node->balance += 1;
798 if (node->balance > 1)
799 return g_tree_node_balance (node);
800 return node;
803 static GTreeNode*
804 g_tree_node_restore_right_balance (GTreeNode *node,
805 gint old_balance)
807 if (!node->right)
808 node->balance -= 1;
809 else if ((node->right->balance != old_balance) &&
810 (node->right->balance == 0))
811 node->balance -= 1;
813 if (node->balance < -1)
814 return g_tree_node_balance (node);
815 return node;
818 static GTreeNode *
819 g_tree_node_lookup (GTreeNode *node,
820 GCompareDataFunc compare,
821 gpointer compare_data,
822 gconstpointer key)
824 gint cmp;
826 if (!node)
827 return NULL;
829 cmp = (* compare) (key, node->key, compare_data);
830 if (cmp == 0)
831 return node;
833 if (cmp < 0)
835 if (node->left)
836 return g_tree_node_lookup (node->left, compare, compare_data, key);
838 else if (cmp > 0)
840 if (node->right)
841 return g_tree_node_lookup (node->right, compare, compare_data, key);
844 return NULL;
847 static gint
848 g_tree_node_count (GTreeNode *node)
850 gint count;
852 count = 1;
853 if (node->left)
854 count += g_tree_node_count (node->left);
855 if (node->right)
856 count += g_tree_node_count (node->right);
858 return count;
861 static gint
862 g_tree_node_pre_order (GTreeNode *node,
863 GTraverseFunc traverse_func,
864 gpointer data)
866 if ((*traverse_func) (node->key, node->value, data))
867 return TRUE;
868 if (node->left)
870 if (g_tree_node_pre_order (node->left, traverse_func, data))
871 return TRUE;
873 if (node->right)
875 if (g_tree_node_pre_order (node->right, traverse_func, data))
876 return TRUE;
879 return FALSE;
882 static gint
883 g_tree_node_in_order (GTreeNode *node,
884 GTraverseFunc traverse_func,
885 gpointer data)
887 if (node->left)
889 if (g_tree_node_in_order (node->left, traverse_func, data))
890 return TRUE;
892 if ((*traverse_func) (node->key, node->value, data))
893 return TRUE;
894 if (node->right)
896 if (g_tree_node_in_order (node->right, traverse_func, data))
897 return TRUE;
900 return FALSE;
903 static gint
904 g_tree_node_post_order (GTreeNode *node,
905 GTraverseFunc traverse_func,
906 gpointer data)
908 if (node->left)
910 if (g_tree_node_post_order (node->left, traverse_func, data))
911 return TRUE;
913 if (node->right)
915 if (g_tree_node_post_order (node->right, traverse_func, data))
916 return TRUE;
918 if ((*traverse_func) (node->key, node->value, data))
919 return TRUE;
921 return FALSE;
924 static gpointer
925 g_tree_node_search (GTreeNode *node,
926 GCompareFunc search_func,
927 gconstpointer data)
929 gint dir;
931 if (!node)
932 return NULL;
934 do {
935 dir = (* search_func) (node->key, data);
936 if (dir == 0)
937 return node->value;
939 if (dir < 0)
940 node = node->left;
941 else if (dir > 0)
942 node = node->right;
943 } while (node);
945 return NULL;
948 static gint
949 g_tree_node_height (GTreeNode *node)
951 gint left_height;
952 gint right_height;
954 if (node)
956 left_height = 0;
957 right_height = 0;
959 if (node->left)
960 left_height = g_tree_node_height (node->left);
962 if (node->right)
963 right_height = g_tree_node_height (node->right);
965 return MAX (left_height, right_height) + 1;
968 return 0;
971 static GTreeNode*
972 g_tree_node_rotate_left (GTreeNode *node)
974 GTreeNode *right;
975 gint a_bal;
976 gint b_bal;
978 right = node->right;
980 node->right = right->left;
981 right->left = node;
983 a_bal = node->balance;
984 b_bal = right->balance;
986 if (b_bal <= 0)
988 if (a_bal >= 1)
989 right->balance = b_bal - 1;
990 else
991 right->balance = a_bal + b_bal - 2;
992 node->balance = a_bal - 1;
994 else
996 if (a_bal <= b_bal)
997 right->balance = a_bal - 2;
998 else
999 right->balance = b_bal - 1;
1000 node->balance = a_bal - b_bal - 1;
1003 return right;
1006 static GTreeNode*
1007 g_tree_node_rotate_right (GTreeNode *node)
1009 GTreeNode *left;
1010 gint a_bal;
1011 gint b_bal;
1013 left = node->left;
1015 node->left = left->right;
1016 left->right = node;
1018 a_bal = node->balance;
1019 b_bal = left->balance;
1021 if (b_bal <= 0)
1023 if (b_bal > a_bal)
1024 left->balance = b_bal + 1;
1025 else
1026 left->balance = a_bal + 2;
1027 node->balance = a_bal - b_bal + 1;
1029 else
1031 if (a_bal <= -1)
1032 left->balance = b_bal + 1;
1033 else
1034 left->balance = a_bal + b_bal + 2;
1035 node->balance = a_bal + 1;
1038 return left;
1041 static void
1042 g_tree_node_check (GTreeNode *node)
1044 gint left_height;
1045 gint right_height;
1046 gint balance;
1048 if (node)
1050 left_height = 0;
1051 right_height = 0;
1053 if (node->left)
1054 left_height = g_tree_node_height (node->left);
1055 if (node->right)
1056 right_height = g_tree_node_height (node->right);
1058 balance = right_height - left_height;
1059 if (balance != node->balance)
1060 g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO,
1061 "g_tree_node_check: failed: %d ( %d )\n",
1062 balance, node->balance);
1064 if (node->left)
1065 g_tree_node_check (node->left);
1066 if (node->right)
1067 g_tree_node_check (node->right);
1071 #define __G_TREE_C__
1072 #include "galiasdef.c"