00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050 #ifndef _cvc3__hash__hash_set_h_
00051 #define _cvc3__hash__hash_set_h_
00052
00053
00054 #include "hash_fun.h"
00055 #include "hash_table.h"
00056
00057 namespace Hash {
00058
00059
00060
00061
00062 template <class _Tp>
00063 struct _Identity : public std::unary_function<_Tp,_Tp> {
00064 const _Tp& operator()(const _Tp& __x) const { return __x; }
00065 };
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076 template <class _Key, class _HashFcn = hash<_Key>,
00077 class _EqualKey = std::equal_to<_Key> >
00078 class hash_set {
00079
00080
00081 protected:
00082 typedef hash_table<_Key, _Key, _HashFcn, _EqualKey, _Identity<_Key> > _hash_table;
00083
00084 public:
00085
00086 typedef typename _hash_table::size_type size_type;
00087 typedef typename _hash_table::key_type key_type;
00088 typedef typename _hash_table::value_type value_type;
00089 typedef typename _hash_table::hasher hasher;
00090 typedef typename _hash_table::key_equal key_equal;
00091
00092 public:
00093
00094 typedef typename _hash_table::iterator iterator;
00095 typedef typename _hash_table::const_iterator const_iterator;
00096
00097
00098
00099
00100
00101 protected:
00102
00103 _hash_table d_table;
00104
00105
00106
00107
00108 public:
00109
00110
00111
00112 hash_set() :
00113 d_table()
00114 { };
00115
00116
00117 hash_set(size_type initial_capacity) :
00118 d_table(initial_capacity)
00119 { };
00120
00121
00122 hash_set(size_type initial_capacity, const _HashFcn& hash) :
00123 d_table(initial_capacity, hash)
00124 { };
00125
00126
00127 hash_set(size_type initial_capacity,
00128 const _HashFcn& hash, const _EqualKey& equal) :
00129 d_table(initial_capacity, hash, equal)
00130 { };
00131
00132
00133 hash_set(const hash_set& other) :
00134 d_table(other.d_table)
00135 { };
00136
00137
00138 hash_set& operator=(const hash_set& other) {
00139 if (this != &other) {
00140 d_table = other.d_table;
00141 }
00142
00143 return *this;
00144 }
00145
00146 void swap(hash_set& other) {
00147 d_table.swap(other.d_table);
00148 }
00149
00150
00151 void clear() {
00152 d_table.clear();
00153 };
00154
00155
00156
00157
00158
00159
00160
00161 iterator find(const key_type& key) {
00162 return d_table.find(key);
00163 }
00164
00165
00166 const_iterator find(const key_type& key) const {
00167 return d_table.find(key);
00168 }
00169
00170
00171
00172
00173 std::pair<iterator, bool> insert(const value_type& entry) {
00174 return d_table.insert(entry);
00175 }
00176
00177
00178
00179
00180 size_type erase(const key_type& key) {
00181 return d_table.erase(key);
00182 }
00183
00184
00185
00186
00187
00188
00189 bool contains(const key_type& key) const {
00190 return d_table.contains(key);
00191 }
00192
00193
00194
00195 size_type count(const _Key& key) const {
00196 return d_table.count(key);
00197 }
00198
00199
00200 bool empty() const {
00201 return d_table.empty();
00202 }
00203
00204
00205 size_type size() const {
00206 return d_table.size();
00207 }
00208
00209
00210 size_type bucket_count() const {
00211 return d_table.bucket_count();
00212 }
00213
00214
00215 float load_factor() const {
00216 return d_table.load_factor();
00217 }
00218
00219
00220
00221
00222
00223
00224 iterator begin() {
00225 return d_table.begin();
00226 }
00227
00228
00229 const_iterator begin() const {
00230 return d_table.begin();
00231 }
00232
00233
00234
00235 iterator end() {
00236 return d_table.end();
00237 }
00238
00239
00240 const_iterator end() const {
00241 return d_table.end();
00242 }
00243 };
00244
00245 }
00246
00247 #endif