-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbitset.h
178 lines (147 loc) · 5.12 KB
/
bitset.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#pragma once
#include <cstdint>
#include <limits.h>
#include <type_traits>
#include <assert.h>
namespace jw_util {
template <unsigned int size>
class Bitset {
typedef typename std::conditional<size <= 8,
std::uint_fast8_t,
typename std::conditional<size <= 16,
std::uint_fast16_t,
typename std::conditional<size <= 32,
std::uint_fast32_t,
std::uint_fast64_t
>::type>::type>::type WordType;
static constexpr unsigned int wordBits = sizeof(WordType) * CHAR_BIT;
static constexpr unsigned int numWords = (size + wordBits - 1) / wordBits;
static_assert((wordBits & (wordBits - 1)) == 0, "wordBits must be a power of 2");
public:
class ValueIterator {
public:
ValueIterator(Bitset &bitset)
: bitset(bitset)
{
findOne();
}
bool has() const {
return curValue < size;
}
unsigned int get() const {
return curValue;
}
void advance() {
curValue++;
findOne();
}
void flip() {
bitset.words[curValue / wordBits] ^= static_cast<WordType>(1) << (curValue % wordBits);
}
private:
Bitset &bitset;
unsigned int curValue = 0;
void findOne() {
while (curValue < size) {
WordType rest = bitset.words[curValue / wordBits] >> (curValue % wordBits);
if (rest) {
curValue += getLsbIndex(rest);
break;
} else {
curValue &= ~(wordBits - 1);
curValue += wordBits;
assert(curValue % wordBits == 0);
}
}
}
};
template <bool value>
void fill() {
for (unsigned int i = 0; i < numWords; i++) {
words[i] = value ? ~static_cast<WordType>(0) : 0;
}
if (value) {
words[numWords - 1] &= (static_cast<WordType>(1) << (size % wordBits)) - 1;
}
}
template <bool value>
void set(unsigned int index) {
assert(index < size);
if (value) {
words[index / wordBits] |= static_cast<WordType>(1) << (index % wordBits);
} else {
words[index / wordBits] &= ~(static_cast<WordType>(1) << (index % wordBits));
}
}
bool get(unsigned int index) const {
assert(index < size);
return (words[index / wordBits] >> (index % wordBits)) & 0x1;
}
unsigned int count() const {
unsigned int count = 0;
for (unsigned int i = 0; i < numWords; i++) {
count += getPopcount(words[i]);
}
return count;
}
bool none() const {
for (unsigned int i = 0; i < numWords; i++) {
if (words[i]) {
return false;
}
}
return true;
}
Bitset<size> operator~() const {
Bitset<size> res;
for (unsigned int i = 0; i < numWords; i++) {
res.words[i] = ~words[i];
}
return res;
}
Bitset<size> operator&(const Bitset<size> &other) const {
Bitset<size> res;
for (unsigned int i = 0; i < numWords; i++) {
res.words[i] = words[i] & other.words[i];
}
return res;
}
Bitset<size> operator|(const Bitset<size> &other) const {
Bitset<size> res;
for (unsigned int i = 0; i < numWords; i++) {
res.words[i] = words[i] | other.words[i];
}
return res;
}
Bitset<size> operator^(const Bitset<size> &other) const {
Bitset<size> res;
for (unsigned int i = 0; i < numWords; i++) {
res.words[i] = words[i] ^ other.words[i];
}
return res;
}
bool operator==(const Bitset<size> &other) const {
for (unsigned int i = 0; i < numWords; i++) {
if (words[i] != other.words[i]) {
return false;
}
}
return true;
}
bool operator!=(const Bitset<size> &other) const {
return !(*this == other);
}
private:
WordType words[numWords];
static unsigned int getLsbIndex(unsigned char word) { return getLsbIndex(static_cast<unsigned int>(word)); }
static unsigned int getLsbIndex(unsigned short word) { return getLsbIndex(static_cast<unsigned int>(word)); }
static unsigned int getLsbIndex(unsigned int word) { return __builtin_ctz(word); }
static unsigned int getLsbIndex(unsigned long word) { return __builtin_ctzl(word); }
static unsigned int getLsbIndex(unsigned long long word) { return __builtin_ctzll(word); }
static unsigned int getPopcount(unsigned char word) { return getPopcount(static_cast<unsigned int>(word)); }
static unsigned int getPopcount(unsigned short word) { return getPopcount(static_cast<unsigned int>(word)); }
static unsigned int getPopcount(unsigned int word) { return __builtin_popcount(word); }
static unsigned int getPopcount(unsigned long word) { return __builtin_popcountl(word); }
static unsigned int getPopcount(unsigned long long word) { return __builtin_popcountll(word); }
};
}