1 //////////////////////////////////////////////////////////////////////////////
4 // ADLib, Prop and their related set of tools and documentation are in the
5 // public domain. The author(s) of this software reserve no copyrights on
6 // the source code and any code generated using the tools. You are encouraged
7 // to use ADLib and Prop to develop software, in both academic and commercial
8 // settings, and are free to incorporate any part of ADLib and Prop into
11 // Although you are under no obligation to do so, we strongly recommend that
12 // you give away all software developed using our tools.
14 // We also ask that credit be given to us when ADLib and/or Prop are used in
15 // your programs, and that this notice be preserved intact in all the source
18 // This software is still under development and we welcome any suggestions
19 // and help from the users.
23 //////////////////////////////////////////////////////////////////////////////
25 #ifndef tree_based_set_h
26 #define tree_based_set_h
28 /////////////////////////////////////////////////////////////////////////////
29 // Class TreeSet<T> implements a set derived from a search tree
30 /////////////////////////////////////////////////////////////////////////////
32 #include <AD/contain/set.h> // Sets
34 /////////////////////////////////////////////////////////////////////////////
36 /////////////////////////////////////////////////////////////////////////////
37 template<class T
, class H
>
38 class TreeSet
: public Set
<T
> {
40 H set
; // a tree object
43 ///////////////////////////////////////////////////////////////////////
45 ///////////////////////////////////////////////////////////////////////
47 typedef Super::Element Element
;
49 ///////////////////////////////////////////////////////////////////////
50 // Constructors and destructor
51 ///////////////////////////////////////////////////////////////////////
53 TreeSet(const Collection
<T
>& C
) { *this = C
; }
54 TreeSet(const TreeSet
<T
,H
>& s
) { set
= s
; }
57 ///////////////////////////////////////////////////////////////////////
59 ///////////////////////////////////////////////////////////////////////
60 // void operator = (const Collection<T>&); // inherited
61 void operator = (const TreeSet
<T
,H
>& S
) { *this = (Collection
<T
>&)S
; }
63 ///////////////////////////////////////////////////////////////////////
65 ///////////////////////////////////////////////////////////////////////
66 inline int size() const { return set
.size(); }
67 inline int capacity() const { return set
.capacity(); }
68 inline Bool
is_empty() const { return set
.is_empty(); }
69 inline Bool
is_full() const { return set
.is_full(); }
70 inline Bool
contains (const T
& e
) const { return set
.contains(e
); }
71 inline Ix
lookup (const T
& e
) const { return set
.lookup(e
); }
73 ///////////////////////////////////////////////////////////////////////
74 // In place set operations
75 ///////////////////////////////////////////////////////////////////////
76 inline void clear() { set
.clear(); } // make
77 inline Ix
insert (const T
& e
) { return set
.insert(e
,0); } // add an element
78 inline Bool
remove (const T
& e
) { return set
.remove(e
); } // remove an element
79 // void Union (const Set& s); // inherited
80 // void Difference (const Set& s); // inherited
81 // void Intersection (const Set& s); // inherited
83 ///////////////////////////////////////////////////////////////////////
85 ///////////////////////////////////////////////////////////////////////
86 inline Ix
first() const { return set
.first(); }
87 inline Ix
next(Ix i
) const { return set
.next(i
); }
88 inline const T
& operator () (Ix i
) const { return (T
&)set
.key(i
); }
89 inline T
& operator () (Ix i
) { return (T
&)set
.key(i
); }
91 ///////////////////////////////////////////////////////////////////////
93 ///////////////////////////////////////////////////////////////////////
94 const char * myName() const { return "TreeSet"; }