-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhashtable.d
336 lines (303 loc) · 7.67 KB
/
hashtable.d
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
// Written in the D programming language
// License: http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0
module util.hashtable;
static if(size_t.sizeof==4) enum fnvp = 16777619U, fnvb = 2166136261U;
else static if(size_t.sizeof==8) enum fnvp = 1099511628211LU, fnvb = 14695981039346656037LU;
size_t FNV(size_t data, size_t start=fnvb){
return (start^data)*fnvp;
}
import util.tuple, std.typetuple;
import std.functional, std.algorithm;
import std.conv, std.array;
//import util;
struct HashMap(K_, V_, alias eq_ , alias h_){
alias K=K_;
alias V=V_;
alias binaryFun!eq_ eq;
alias unaryFun!h_ h;
struct E{ V v; K k; } // TODO: why can't the two fields be swapped?
alias E[] B;
B[] es;
size_t length;
enum initialSize = 16;
enum maxBucketSize = 20;
enum limitfactor = 32;
enum incrementFactor = 3;
enum decrementFactor = 2;
enum compactLimit = 16;
private void initialize(){ es = new B[](initialSize); }
int numrealloc;
private void realloc(){
auto ees = es;
es = new B[](es.length*incrementFactor);
length = 0;
foreach(b;ees) foreach(e;b) insert(e);
}
private void compact(){
auto ees = es;
es = new B[](es.length/decrementFactor);
length = 0;
foreach(b;ees) foreach(ref e;b) insert(e);
}
bool opBinaryRight(string op: "in")(K k){
if(length){
foreach(ref e; es[h(k)%$])
if(eq(k, e.k)) return true;
}
return false;
}
V get(K k, lazy V alt){
if(length){
foreach(ref e; es[h(k)%$])
if(eq(k, e.k)) return e.v;
}
return alt;
}
ref V opIndex(K k){ // TODO: get rid of code duplication
if(length){
foreach(ref e; es[h(k)%$])
if(eq(k, e.k)) return e.v;
}
static if(is(typeof(text(k)))) assert(0, text("key not found: ",k));
else assert(0, "key not found");
}
bool remove(K k){
if(!es.length) return false;
auto b = &es[h(k)%$];
foreach(ref e; *b)
if(eq(k, e.k)){
swap(e, (*b)[$-1]);
length--;
*b=(*b)[0..$-1];
(*b).assumeSafeAppend();
return true;
}
return false;
}
private bool insert(E x) /+out{assert(x.k in this, text(es[h(x.k)%$]));}body+/{
if(!es.length) initialize();
auto hs=h(x.k);
auto b = &es[hs%$];
foreach(ref e; *b)
if(eq(x.k, e.k)){
e=x;
return false;
}
length++;
*b~=x;
if(b.length>maxBucketSize&&hs!=h((*b)[0].k)&&es.length<2*length) realloc();
return true;
}
void opIndexAssign(V v, K k){
insert(E(v,k));
}
void opIndexOpAssign(string op,W)(W w, K k){
if(length){
foreach(ref e; es[h(k)%$])
if(eq(k, e.k)){
mixin(`e.v `~op~`= w;`);
return;
}
}
V v; mixin(`v` ~op~`= w;`);
insert(E(v,k));
}
int opApply(scope int delegate(ref V) dg){
if(es.length>compactLimit*length) compact();
foreach(ref b;es) foreach(ref e;b) if(auto r=dg(e.v)) return r;
return 0;
}
int opApply(scope int delegate(ref K,ref V) dg){
if(es.length>compactLimit*length) compact();
foreach(ref b;es) foreach(ref e;b) if(auto r=dg(e.k, e.v)) return r;
return 0;
}
@property byKeyValue(){ return es.joiner; }
@property keys(){ return byKeyValue.map!((ref x)=>x.k); }
@property values(){ return byKeyValue.map!(function ref(ref x)=>x.v); }
bool opEquals()(ref HashMap rhs){
foreach(k,v;this) if(k !in rhs || rhs[k] != v) return false;
foreach(k,v;rhs) if(k !in this) return false;
return true;
}
hash_t toHash()(){
hash_t r=0;
foreach(ref x;es) foreach(ref b;x) r+=FNV(h(b.k),FNV(b.v.toHash(),fnvb)); // TODO: improve
return r;
}
void clear(){ es[]=B.init; length=0; }
HashMap dup(){
// return HashMap(es.map!(_=>_.dup).array, length); // fu
auto oes = es.dup;
foreach(ref e;oes) e=e.dup;
return HashMap(oes, length);
}
//static if(is(typeof(text(K.init,V.init))))
string toString(){
//return text("[",join(map!(_=>text(_.k,":",_.v))(filter!"a.e"(es)),", "),"]");// wtf
auto r="[";
foreach(b;es) foreach(e;b) r~=text(e.k,":",e.v)~", ";
if(r.length>2) r=r[0..$-2];
//r.assumeSafeAppend();
r~="]";
return r;
}
}
import std.range;
struct HSet(T_,alias eq, alias h){
alias T=T_;
private HashMap!(T,void[0],eq,h) payload;
hash_t hash=0;
void clear(){ payload.clear(); }
auto dup(){ return HSet(payload.dup,hash); }
@property size_t length(){ return payload.length; }
hash_t toHash(){ return hash; }
bool opBinaryRight(string op: "in")(T t){
return t in payload;
}
void insert(T t){
if(payload.insert(typeof(payload).E([],t)))
hash+=FNV(h(t));
}
void remove(T t){
if(payload.remove(t))
hash-=FNV(h(t));
}
int opApply(scope int delegate(T) dg){
foreach(x,_;payload) if(auto r=dg(x)) return r;
return 0;
}
bool opEquals(ref HSet rhs){
foreach(x;this) if(x !in rhs) return false;
foreach(x;rhs) if(x !in this) return false;
return true;
}
static if(is(typeof(text(T.init)))) string toString(){
string r="{";
foreach(x;this) r~=text(x)~", ";
if(r.length>2) r=r[0..$-2];
return r~="}";
}
}
template hset(alias h,alias eq){
auto hset(T)(T args){
alias S=typeof({ foreach(x;args) return x; assert(0); }());
HSet!(S,eq,h) s;
foreach(x;args) s.insert(x);
return s;
}
}
struct SHSet(T_) if(is(T_==class)){ // small hash set
alias T=T_;
bool isSmall=true;
union{ T[4] small; HSet!(T,(a,b)=>a is b,a=>a.toHash()) large; }
private this(typeof(large) large){ isSmall=false; this.large=large; }
void clear(){
if(isSmall) small[]=null;
else large.clear();
}
auto dup(){
if(isSmall) return this;
return SHSet(large.dup);
}
@property size_t length(){
if(isSmall){ size_t r=0; foreach(x;small) if(x !is null) r++; return r; }
return large.length;
}
hash_t toHash(){
if(isSmall){ hash_t r; foreach(x;small) if(x !is null) r+=FNV(x.toHash()); return r; }
return large.toHash();
}
bool opBinaryRight(string op: "in")(T t){
if(isSmall){ foreach(x;small) if(x is t) return true; return false; }
return t in large;
}
void insert(T t){
if(isSmall){
foreach(x;small) if(x is t) return;
foreach(ref x;small) if(x is null){ x=t; return; }
typeof(large) l;
foreach(x;small) l.insert(x);
isSmall=false;
large=l;
}
large.insert(t);
}
void remove(T t){
if(isSmall){
foreach(ref x;small) if(x is t) x=null;
return;
}
large.remove(t);
if(large.length<=small.length){
T[small.length] s;
int i=0;
foreach(x;large) s[i++]=x;
isSmall=true;
small=s;
}
}
int opApply(scope int delegate(T) dg){
if(isSmall){ foreach(x;small) if(x !is null) if(auto r=dg(x)) return r; return 0; }
foreach(x;large) if(auto r=dg(x)) return r;
return 0;
}
bool opEquals(ref SHSet rhs){
foreach(x;this) if(x !in rhs) return false;
foreach(x;rhs) if(x !in this) return false;
return true;
}
static if(is(typeof(text(T.init)))) string toString(){
string r="{";
foreach(x;this) r~=text(x)~", ";
if(r.length>2) r=r[0..$-2];
return r~="}";
}
}
auto shset(T)(T args){
alias S=typeof({ foreach(x;args) return x; assert(0); }());
SHSet!S s;
foreach(x;args) s.insert(x);
return s;
}
/+
void main(){
import std.stdio;
auto s=hset!(a=>a,(a,b)=>a==b,int)([1,2,3,4]);
writeln(3 in s);
auto t=hset!(a=>a.toHash(),(a,b)=>a==b)([s]);
writeln(s !in t);
}+/
struct Subsets(T){
typeof(T.init.array) arr;
int opApply(scope int delegate(T) dg){
T cur;
int enumerate(size_t i){
if(i>=arr.length) return dg(cur.dup);
if(auto r=enumerate(i+1)) return r;
cur.insert(arr[i]);
if(auto r=enumerate(i+1)) return r;
cur.remove(arr[i]);
return 0;
}
return enumerate(0);
}
}
auto subsets(T)(T arg){ return Subsets!T(arg.array); }
auto element(T)(T arg)in{assert(arg.length==1);}do{ foreach(x;arg) return x; assert(0); }
T intersect(T)(T a,T b){
T r;
foreach(x;a) if(x in b) r.insert(x);
return r;
}
T unite(T)(T a,T b){
T r;
foreach(x;a) r.insert(x);
foreach(y;b) r.insert(y);
return r;
}
T setMinus(T)(T a,T b){
T r;
foreach(x;a) if(x !in b) r.insert(x);
return r;
}