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 #ifndef BITSET_H
00039 #define BITSET_H
00040
00041
00042 #define BITSETWORD unsigned int
00043 const int BITSETWORDSIZE = 8*sizeof(unsigned int);
00044
00045
00046 #include <assert.h>
00047 #include <iostream>
00048
00049 using std::ostream;
00050
00051
00052 class BitSetIterator;
00053
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081 class BitSet
00082 {
00083 public:
00085 BitSet();
00086
00088 BitSet(int bits, bool init);
00089
00091 void define(int bits, bool init);
00092
00094 BitSet(const BitSet& rhs);
00095
00097 BitSet& operator=(const BitSet& rhs);
00098
00100 ~BitSet();
00101
00102
00103
00104 bool operator[](int i) const;
00105
00106
00107
00108
00109
00111 void setTrue(int i);
00112
00114 void setFalse(int i);
00115
00117
00120 bool isEmpty() const;
00121
00123
00126 bool isFull() const;
00127
00129 int size() const;
00130 static int initialize();
00131
00132 int linearSize() const;
00133
00134 void linearIn(const void* const inBuf);
00135
00136 void linearOut(void* const a_outBuf) const;
00137
00138
00139 static long int bytes;
00140 static long int peak;
00141
00142 private:
00143 friend class BitSetIterator;
00144
00145 BITSETWORD* m_bits;
00146 int m_size;
00147 int m_length;
00148
00149 static BITSETWORD trueMasks[BITSETWORDSIZE];
00150 };
00151
00152
00153
00154 inline bool BitSet::operator[](int i) const
00155 {
00156 assert(i>=0);
00157 assert(i<m_size);
00158 int index = i/BITSETWORDSIZE;
00159 assert(index < m_length);
00160 int remainder = i-BITSETWORDSIZE*index;
00161 BITSETWORD tmp = m_bits[index] & trueMasks[remainder];
00162 return tmp > 0;
00163 }
00164
00165 inline int BitSet::size() const
00166 {
00167 return m_size;
00168 }
00169
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187 class BitSetIterator
00188 {
00189 public:
00191 BitSetIterator();
00192
00194 BitSetIterator(const BitSet& bitset);
00195
00196
00197
00199 bool operator()() const;
00200
00202 bool ok() const;
00203
00205 void operator++();
00206
00208 void begin();
00209
00211 void end();
00212
00213 private:
00214 int m_index;
00215 int m_remainder;
00216 int m_length;
00217
00218 int m_partialBits;
00219 const BitSet* m_bitset;
00220 static BitSet emptyBitSet;
00221 };
00222
00223 inline
00224 BitSetIterator::BitSetIterator()
00225 : m_index(0), m_remainder(0), m_length(0), m_partialBits(0), m_bitset(&emptyBitSet)
00226 {;}
00227
00228 inline
00229 BitSetIterator::BitSetIterator(const BitSet& a_bitset)
00230 :m_index(0), m_remainder(0), m_length(a_bitset.m_length - 1),
00231 m_partialBits(a_bitset.m_size - BITSETWORDSIZE*(a_bitset.m_length - 1)),
00232 m_bitset(&a_bitset)
00233 {
00234 if(m_partialBits == BITSETWORDSIZE)
00235 {
00236 m_partialBits = 0;
00237 m_length++;
00238 }
00239 }
00240
00241 inline
00242 bool BitSetIterator::operator()() const
00243 {
00244 return (m_bitset->m_bits[m_index] & BitSet::trueMasks[m_remainder] ) > 0;
00245 }
00246
00247 inline
00248 bool BitSetIterator::ok() const
00249 {
00250 if(m_index < m_length) return true;
00251 if(m_remainder < m_partialBits) return true;
00252 return false;
00253 }
00254
00255 inline
00256 void BitSetIterator::operator++()
00257 {
00258 ++m_remainder;
00259 if(m_remainder == BITSETWORDSIZE)
00260 {
00261 m_remainder = 0;
00262 ++m_index;
00263 }
00264 }
00265
00266 #endif