gb_sets
General Balanced Trees
An implementation of ordered sets using Prof. Arne Andersson's General Balanced Trees. This can be much more efficient than using ordered lists, for larger sets, but depends on the application.
This module considers two elements as different if and only if
they do not compare equal (==
).
Complexity note
The complexity on set operations is bounded by either O(|S|) or O(|T| * log(|S|)), where S is the largest given set, depending on which is fastest for any particular function call. For operating on sets of almost equal size, this implementation is about 3 times slower than using ordered-list sets directly. For sets of very different sizes, however, this solution can be arbitrarily much faster; in practical cases, often between 10 and 100 times. This implementation is particularly suited for accumulating elements a few at a time, building up a large set (more than 100-200 elements), and repeatedly testing for membership in the current set.
As with normal tree structures, lookup (membership testing), insertion and deletion have logarithmic complexity.
Compatibility
All of the following functions in this module also exist
and do the same thing in the sets
and ordsets
modules. That is, by only changing the module name for each call,
you can try out different set representations.
-
add_element/2
-
del_element/2
-
filter/2
-
fold/3
-
from_list/1
-
intersection/1
-
intersection/2
-
is_element/2
-
is_set/1
-
is_subset/2
-
new/0
-
size/1
-
subtract/2
-
to_list/1
-
union/1
-
union/2
A GB set.
A GB set iterator.
Functions
add/2
add_element/2
Returns a new gb_set formed from
with
inserted. If
is already an
element in
, nothing is changed.
balance/1
Rebalances the tree representation of
. Note that
this is rarely necessary, but may be motivated when a large
number of elements have been deleted from the tree without
further insertions. Rebalancing could then be forced in order
to minimise lookup times, since deletion only does not
rebalance the tree.
delete/2
Returns a new gb_set formed from
with
removed. Assumes that
is present
in
.
delete_any/2
del_element/2
Returns a new gb_set formed from
with
removed. If
is not an element
in
, nothing is changed.
difference/2
subtract/2
Returns only the elements of
which are not also
elements of
.
empty/0
new/0
Returns a new empty gb_set.
filter/2
Filters elements in
using predicate function
.
fold/3
Folds
over every element in
returning the final value of the accumulator.
from_list/1
Returns a gb_set of the elements in
, where
may be unordered and contain duplicates.
from_ordset/1
Turns an ordered-set list
into a gb_set. The list
must not contain duplicates.
insert/2
Returns a new gb_set formed from
with
inserted. Assumes that
is not
present in
.
intersection/2
Returns the intersection of
and
.
intersection/1
Returns the intersection of the non-empty list of gb_sets.
is_disjoint/2
Returns true
if
and
are disjoint (have no elements in common),
and false
otherwise.
is_empty/1
Returns true
if
is an empty set, and
false
otherwise.
is_member/2
is_element/2
Returns true
if
is an element of
, otherwise false
.
is_set/1
Returns true
if
appears to be a gb_set,
otherwise false
.
is_subset/2
Returns true
when every element of
is
also a member of
, otherwise false
.
iterator/1
Returns an iterator that can be used for traversing the
entries of
; see next/1
. The implementation
of this is very efficient; traversing the whole set using
next/1
is only slightly slower than getting the list
of all elements using to_list/1
and traversing that.
The main advantage of the iterator approach is that it does
not require the complete list of all elements to be built in
memory at one time.
largest/1
Returns the largest element in
. Assumes that
is nonempty.
next/1
Returns {
where
is the
smallest element referred to by the iterator
,
and
is the new iterator to be used for
traversing the remaining elements, or the atom none
if
no elements remain.
singleton/1
Returns a gb_set containing only the element
.
size/1
Returns the number of elements in
.
smallest/1
Returns the smallest element in
. Assumes that
is nonempty.
take_largest/1
Returns {
, where
is the
largest element in
, and
is this set
with
deleted. Assumes that
is
nonempty.
take_smallest/1
Returns {
, where
is the
smallest element in
, and
is this set
with
deleted. Assumes that
is
nonempty.
to_list/1
Returns the elements of
as a list.
union/2
Returns the merged (union) gb_set of
and
.
union/1
Returns the merged (union) gb_set of the list of gb_sets.