@@ -28,8 +28,9 @@ type qElt struct{ s, e, col int }
28
28
// NewDomainSet creates a new *DomainSet struct, from a DomainTrie.
29
29
func (t * DomainTrie [T ]) NewDomainSet () * DomainSet {
30
30
reserveDomains := make ([]string , 0 )
31
- t .Foreach (func (domain string , data T ) {
31
+ t .Foreach (func (domain string , data T ) bool {
32
32
reserveDomains = append (reserveDomains , utils .Reverse (domain ))
33
+ return true
33
34
})
34
35
// ensure that the same prefix is continuous
35
36
// and according to the ascending sequence of length
@@ -136,6 +137,41 @@ func (ss *DomainSet) Has(key string) bool {
136
137
137
138
}
138
139
140
+ func (ss * DomainSet ) keys (f func (key string ) bool ) {
141
+ var currentKey []byte
142
+ var traverse func (int , int ) bool
143
+ traverse = func (nodeId , bmIdx int ) bool {
144
+ if getBit (ss .leaves , nodeId ) != 0 {
145
+ if ! f (string (currentKey )) {
146
+ return false
147
+ }
148
+ }
149
+
150
+ for ; ; bmIdx ++ {
151
+ if getBit (ss .labelBitmap , bmIdx ) != 0 {
152
+ return true
153
+ }
154
+ nextLabel := ss .labels [bmIdx - nodeId ]
155
+ currentKey = append (currentKey , nextLabel )
156
+ nextNodeId := countZeros (ss .labelBitmap , ss .ranks , bmIdx + 1 )
157
+ nextBmIdx := selectIthOne (ss .labelBitmap , ss .ranks , ss .selects , nextNodeId - 1 ) + 1
158
+ if ! traverse (nextNodeId , nextBmIdx ) {
159
+ return false
160
+ }
161
+ currentKey = currentKey [:len (currentKey )- 1 ]
162
+ }
163
+ }
164
+
165
+ traverse (0 , 0 )
166
+ return
167
+ }
168
+
169
+ func (ss * DomainSet ) Foreach (f func (key string ) bool ) {
170
+ ss .keys (func (key string ) bool {
171
+ return f (utils .Reverse (key ))
172
+ })
173
+ }
174
+
139
175
func setBit (bm * []uint64 , i int , v int ) {
140
176
for i >> 6 >= len (* bm ) {
141
177
* bm = append (* bm , 0 )
0 commit comments