1 /* Ordered set data type implemented by a binary tree.
2 Copyright (C) 2006-2007, 2009-2020 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_oset.h"
25 /* -------------------------- gl_oset_t Data Type -------------------------- */
27 /* Parameterization of gl_rbtree_ordered.h. */
28 #define CONTAINER_T gl_oset_t
29 #define CONTAINER_IMPL gl_oset_impl
30 #define CONTAINER_IMPL_BASE gl_oset_impl_base
31 #define NODE_IMPL gl_oset_node_impl
32 #define NODE_T gl_oset_node_t
33 #define NODE_PAYLOAD_FIELDS \
35 #define NODE_PAYLOAD_PARAMS \
37 #define NODE_PAYLOAD_ASSIGN(node) \
39 #define NODE_PAYLOAD_DISPOSE(container, node) \
40 if (container->base.dispose_fn != NULL) \
41 container->base.dispose_fn (node->value);
43 #include "gl_rbtree_ordered.h"
45 /* Generic binary tree code. */
46 #include "gl_anytree_oset.h"
50 gl_rbtree_oset_check_invariants (gl_oset_t set
)
53 if (set
->root
!= NULL
)
54 check_invariants (set
->root
, NULL
, &counter
);
55 if (!(set
->count
== counter
))
59 const struct gl_oset_implementation gl_rbtree_oset_implementation
=
61 gl_tree_nx_create_empty
,
64 gl_tree_search_atleast
,
70 gl_tree_iterator_atleast
,
71 gl_tree_iterator_next
,