-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitset.go
391 lines (287 loc) · 6.87 KB
/
bitset.go
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
package bitset
import (
"fmt"
"math"
)
type (
Bitset interface {
Test(idx uint64) bool
Set(idx uint64) Bitset
Clear(idx uint64) Bitset
Swap(idx uint64, set bool) (swapped bool)
Count() uint64
Max() uint64
Cap() uint64
NextSet(start uint64) (idx uint64, found bool)
NextClear(start uint64) (idx uint64, found bool)
PrevSet(start uint64) (idx uint64, found bool)
PrevClear(start uint64) (idx uint64, found bool)
Any() bool
All() bool
None() bool
SetAll() Bitset
ClearAll() Bitset
ForEachSet(do func(idx uint64) bool) Bitset
ForEachClear(do func(idx uint64) bool) Bitset
ForEachSetRange(start, end uint64, do func(idx uint64) bool) Bitset
ForEachClearRange(start, end uint64, do func(idx uint64) bool) Bitset
// GetSetRanges(start, end uint64) []interval.Interval
// SetRange(start, end uint64) Bitset
// ClearRange(start, end uint64) Bitset
// FlipRange(start, end uint64) Bitset
// NextSetRange(start, end uint64) (idx uint64, found bool)
// NextClearRange(start, end uint64) (idx uint64, found bool)
// PrevSetRange(start, end uint64) (idx uint64, found bool)
// PrevClearRange(start, end uint64) (idx uint64, found bool)
// AnyRange(start, end uint64) bool
// AllRange(start, end uint64) bool
// NoneRange(start, end uint64) bool
// And(b Bitset) Bitset
// Or(b Bitset) Bitset
// Xor(b Bitset) Bitset
// Not() Bitset
// Equal(b Bitset) bool
// Clone() Bitset
Stats() []int // #stats
}
)
type (
bitset struct {
root node
rootLevel *level
count uint64
max uint64
}
)
func New(levelBits []uint) Bitset {
rootLevel, max := initLevels(levelBits)
if rootLevel == nil {
return nil
}
return &bitset{
root: newNode(rootLevel, true, false),
rootLevel: rootLevel,
max: max,
}
}
func (t *bitset) Max() uint64 {
return t.max
}
func (t *bitset) Cap() uint64 {
return t.max + 1 // could overflow, if Max == math.MaxUint64!
}
func (t *bitset) Test(idx uint64) (ret bool) {
return t.root.test(t.rootLevel, idx)
}
func (t *bitset) Set(idx uint64) Bitset {
if idx > t.max {
return nil
}
if set, replace := t.root.set(t.rootLevel, idx); set {
t.count++
if replace != t.root {
t.root = replace
}
}
return t
}
func (t *bitset) Clear(idx uint64) Bitset {
if idx > t.max {
return nil
}
if cleared, replace := t.root.clr(t.rootLevel, idx); cleared {
t.count--
if replace != t.root {
t.root = replace
}
}
return t
}
func (t *bitset) Swap(idx uint64, set bool) bool {
if idx > t.max {
return false
}
var swapped bool
if set {
if swapped, _ := t.root.set(t.rootLevel, idx); swapped {
t.count++
}
} else {
if swapped, _ := t.root.clr(t.rootLevel, idx); swapped {
t.count--
}
}
return swapped
}
func (t *bitset) Count() uint64 {
return t.count
}
func (t *bitset) NextSet(start uint64) (idx uint64, found bool) {
if start > t.max {
return math.MaxUint64, false
}
return t.root.nextset(t.rootLevel, start)
}
func (t *bitset) NextClear(start uint64) (idx uint64, found bool) {
if start > t.max {
return math.MaxUint64, false
}
return t.root.nextclr(t.rootLevel, start)
}
func (t *bitset) PrevSet(start uint64) (idx uint64, found bool) {
if start > t.max {
start = t.max
}
return t.root.prevset(t.rootLevel, start)
}
func (t *bitset) PrevClear(start uint64) (idx uint64, found bool) {
if start > t.max {
start = t.max
}
return t.root.prevclr(t.rootLevel, start)
}
func (t *bitset) Any() bool {
return !t.None()
}
func (t *bitset) All() bool {
_, ok := t.root.(*setnode)
return ok
}
func (t *bitset) None() bool {
_, ok := t.root.(*clrnode)
return ok
}
func (t *bitset) SetAll() Bitset {
if _, ok := t.root.(*setnode); !ok {
t.root = sparsify(t.rootLevel, t.root, true)
t.count = t.max + 1 // NB: could overflow!
}
return t
}
func (t *bitset) ClearAll() Bitset {
if _, ok := t.root.(*clrnode); !ok {
t.root = sparsify(t.rootLevel, t.root, false)
t.count = 0
}
return t
}
func (t *bitset) ForEachSet(do func(idx uint64) bool) Bitset {
for i := uint64(0); i <= t.max; i++ {
var found bool
i, found = t.root.nextset(t.rootLevel, i) // TODO: send down 'end' to terminate search sooner
if !found || !do(i) {
break // all done
}
}
return t
}
func (t *bitset) ForEachClear(do func(idx uint64) bool) Bitset {
for i := uint64(0); i <= t.max; i++ {
var found bool
i, found = t.root.nextclr(t.rootLevel, i) // TODO: send down 'end' to terminate search sooner
if !found {
break // all done
}
if !do(i) {
break
}
}
return t
}
func (t *bitset) ForEachSetRange(start, end uint64, do func(idx uint64) bool) Bitset {
if end > t.max {
end = t.max
}
for i := start; i <= end; i++ {
var found bool
i, found = t.root.nextset(t.rootLevel, start) // TODO: send down 'end' to terminate search sooner
if !found {
break // all done
}
if !do(i) {
break
}
}
return t
}
func (t *bitset) ForEachClearRange(start, end uint64, do func(idx uint64) bool) Bitset {
if end > t.max {
end = t.max
}
for i := start; i <= end && i <= t.max; i++ {
var found bool
i, found = t.root.nextclr(t.rootLevel, start) // TODO: send down 'end' to terminate search sooner
if !found {
break // all done
}
if !do(i) {
break
}
}
return t
}
func (t *bitset) Stats() (numNodes []int) {
l := t.rootLevel
for {
numNodes = append(numNodes, l.numNodes)
if l.next == nil {
break
}
l = l.next
}
return
}
func dbg0(f string, a ...interface{}) {
// fmt.Printf(f, a...)
}
func dbg1(f string, a ...interface{}) {
fmt.Printf(f, a...)
}
func dbg2(f string, a ...interface{}) {
fmt.Printf(f, a...)
}
/*
type BitSet interface {
All() bool
Any() bool
BinaryStorageSize() int
Bytes() []uint64
* Clear(i uint) *BitSet
ClearAll() *BitSet
Clone() *BitSet
Complement() (result *BitSet)
Copy(c *BitSet) (count uint)
Count() uint
Difference(compare *BitSet) (result *BitSet)
DifferenceCardinality(compare *BitSet) uint
DumpAsBits() string
Equal(c *BitSet) bool
Flip(i uint) *BitSet
InPlaceDifference(compare *BitSet)
InPlaceIntersection(compare *BitSet)
InPlaceSymmetricDifference(compare *BitSet)
InPlaceUnion(compare *BitSet)
Intersection(compare *BitSet) (result *BitSet)
IntersectionCardinality(compare *BitSet) uint
IsStrictSuperSet(other *BitSet) bool
IsSuperSet(other *BitSet) bool
Len() uint
MarshalBinary() ([]byte, error)
MarshalJSON() ([]byte, error)
NextClear(i uint) (uint, bool)
NextSet(i uint) (uint, bool)
None() bool
ReadFrom(stream io.Reader) (int64, error)
* Set(i uint) *BitSet
SetTo(i uint, value bool) *BitSet
String() string
SymmetricDifference(compare *BitSet) (result *BitSet)
SymmetricDifferenceCardinality(compare *BitSet) uint
* Test(i uint) bool
Union(compare *BitSet) (result *BitSet)
UnionCardinality(compare *BitSet) uint
UnmarshalBinary(data []byte) error
UnmarshalJSON(data []byte) error
WriteTo(stream io.Writer) (int64, error)
}
*/