1 /* Sequential list data type implemented by a binary tree.
2 Copyright (C) 2006, 2008-2019 Free Software Foundation, Inc.
3 Written by Bruno Haible <bruno@clisp.org>, 2006.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
21 #include "gl_rbtree_list.h"
25 /* -------------------------- gl_list_t Data Type -------------------------- */
27 /* Generic red-black tree code. */
28 #include "gl_anyrbtree_list1.h"
30 /* Generic binary tree code. */
31 #include "gl_anytree_list1.h"
33 /* Generic red-black tree code. */
34 #include "gl_anyrbtree_list2.h"
36 /* Generic binary tree code. */
37 #include "gl_anytree_list2.h"
41 check_invariants (gl_list_node_t node
, gl_list_node_t parent
)
43 unsigned int left_blackheight
=
44 (node
->left
!= NULL
? check_invariants (node
->left
, node
) : 0);
45 unsigned int right_blackheight
=
46 (node
->right
!= NULL
? check_invariants (node
->right
, node
) : 0);
48 if (!(node
->parent
== parent
))
50 if (!(node
->branch_size
51 == (node
->left
!= NULL
? node
->left
->branch_size
: 0)
52 + 1 + (node
->right
!= NULL
? node
->right
->branch_size
: 0)))
54 if (!(node
->color
== BLACK
|| node
->color
== RED
))
56 if (parent
== NULL
&& !(node
->color
== BLACK
))
58 if (!(left_blackheight
== right_blackheight
))
61 return left_blackheight
+ (node
->color
== BLACK
? 1 : 0);
64 gl_rbtree_list_check_invariants (gl_list_t list
)
66 if (list
->root
!= NULL
)
67 check_invariants (list
->root
, NULL
);
70 const struct gl_list_implementation gl_rbtree_list_implementation
=
72 gl_tree_nx_create_empty
,
76 gl_tree_node_nx_set_value
,
78 gl_tree_previous_node
,
81 gl_tree_search_from_to
,
82 gl_tree_indexof_from_to
,
85 gl_tree_nx_add_before
,
93 gl_tree_iterator_from_to
,
94 gl_tree_iterator_next
,
95 gl_tree_iterator_free
,
96 gl_tree_sortedlist_search
,
97 gl_tree_sortedlist_search_from_to
,
98 gl_tree_sortedlist_indexof
,
99 gl_tree_sortedlist_indexof_from_to
,
100 gl_tree_sortedlist_nx_add
,
101 gl_tree_sortedlist_remove