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 #ifndef HashSet_H
00045 #define HashSet_H
00046
00047 #include <OpenFOAM/HashTable.H>
00048 #include <OpenFOAM/nil.H>
00049
00050
00051
00052 namespace Foam
00053 {
00054
00055
00056
00057
00058
00059 template<class Key=word, class Hash=string::hash>
00060 class HashSet
00061 :
00062 public HashTable<nil, Key, Hash>
00063 {
00064
00065 public:
00066
00067 typedef typename HashTable<nil, Key, Hash>::iterator iterator;
00068 typedef typename HashTable<nil, Key, Hash>::const_iterator const_iterator;
00069
00070
00071
00072
00073
00074 HashSet(const label size = 128)
00075 :
00076 HashTable<nil, Key, Hash>(size)
00077 {}
00078
00079
00080 HashSet(Istream& is)
00081 :
00082 HashTable<nil, Key, Hash>(is)
00083 {}
00084
00085
00086 HashSet(const UList<Key>& lst)
00087 :
00088 HashTable<nil, Key, Hash>(2*lst.size())
00089 {
00090 forAll(lst, i)
00091 {
00092 insert(lst[i]);
00093 }
00094 }
00095
00096
00097 HashSet(const HashSet<Key, Hash>& hs)
00098 :
00099 HashTable<nil, Key, Hash>(hs)
00100 {}
00101
00102
00103 HashSet(const Xfer<HashSet<Key, Hash> >& hs)
00104 :
00105 HashTable<nil, Key, Hash>(hs)
00106 {}
00107
00108
00109 HashSet(const Xfer<HashTable<nil, Key, Hash> >& hs)
00110 :
00111 HashTable<nil, Key, Hash>(hs)
00112 {}
00113
00114
00115
00116 template<class AnyType, class AnyHash>
00117 HashSet(const HashTable<AnyType, Key, AnyHash>&);
00118
00119
00120
00121
00122
00123
00124
00125 bool insert(const Key& key)
00126 {
00127 return HashTable<nil, Key, Hash>::insert(key, nil());
00128 }
00129
00130
00131 bool set(const Key& key)
00132 {
00133 return HashTable<nil, Key, Hash>::insert(key, nil());
00134 }
00135
00136
00137
00138
00139
00140 inline bool operator[](const Key&) const;
00141
00142
00143
00144 bool operator==(const HashSet<Key, Hash>&) const;
00145
00146
00147 bool operator!=(const HashSet<Key, Hash>&) const;
00148
00149
00150
00151 void operator|=(const HashSet<Key, Hash>&);
00152
00153
00154 void operator&=(const HashSet<Key, Hash>&);
00155
00156
00157 void operator^=(const HashSet<Key, Hash>&);
00158
00159
00160 inline void operator+=(const HashSet<Key, Hash>& rhs)
00161 {
00162 this->operator|=(rhs);
00163 }
00164
00165
00166 void operator-=(const HashSet<Key, Hash>&);
00167 };
00168
00169
00170
00171
00172
00173 template<class Key, class Hash>
00174 HashSet<Key,Hash> operator|
00175 (
00176 const HashSet<Key,Hash>& hash1,
00177 const HashSet<Key,Hash>& hash2
00178 );
00179
00180
00181
00182 template<class Key, class Hash>
00183 HashSet<Key,Hash> operator&
00184 (
00185 const HashSet<Key,Hash>& hash1,
00186 const HashSet<Key,Hash>& hash2
00187 );
00188
00189
00190
00191 template<class Key, class Hash>
00192 HashSet<Key,Hash> operator^
00193 (
00194 const HashSet<Key,Hash>& hash1,
00195 const HashSet<Key,Hash>& hash2
00196 );
00197
00198
00199
00200 typedef HashSet<> wordHashSet;
00201
00202
00203 typedef HashSet<label, Hash<label> > labelHashSet;
00204
00205
00206
00207
00208 }
00209
00210
00211
00212 #ifdef NoRepository
00213 # include "HashSet.C"
00214 #endif
00215
00216
00217
00218 #endif
00219
00220