-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathHistogram.hx
394 lines (341 loc) · 9.55 KB
/
Histogram.hx
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
392
393
394
package moon.data.set;
import haxe.Constraints.IMap;
import haxe.Serializer;
import moon.core.Pair;
import moon.core.Seq;
import moon.data.iterators.MapIterator;
import moon.data.map.OrderedMap;
/**
* Histogram<T> is a Map<T,Int> where Int is the count of T.
* It also has Set<T> methods, but doesn't implements ISet<T>.
*
* @author Munir Hussin
*/
@:forward abstract Histogram<T>(HistogramType<T>) to HistogramType<T> from HistogramType<T>
{
/**
* Usage: Std.is(set, Histogram.type);
*/
public static var type(default, null) = HistogramType;
public function new(?cmp:T->T->Int)
{
this = new HistogramType<T>(cmp);
}
/**
* Return a new set by performing a cartesian product on `other`.
*/
@:op(A * B) private inline function mul<U>(other:Histogram<U>):Histogram<Pair<T,U>>
{
return this.cartesianProduct(other);
}
@:op(a <= b) private inline function lte(other:Histogram<T>):Bool
{
return this.subset(other);
}
@:op(a < b) private inline function lt(other:Histogram<T>):Bool
{
return this.properSubset(other);
}
@:op(a >= b) private inline function gte(other:Histogram<T>):Bool
{
return other.subset(this);
}
@:op(a > b) private inline function ge(other:Histogram<T>):Bool
{
return other.properSubset(this);
}
@:op(a == b) private inline function eq(other:Histogram<T>):Bool
{
return this.equals(other);
}
@:op(a != b) private inline function neq(other:Histogram<T>):Bool
{
return !this.equals(other);
}
/**
* Returns a new set containing all elements from `this`
* as well as elements from `other`.
*
* Operator: this | other
* Venn: (###(###)###)
*/
@:op(A | B) private inline function or(other:Histogram<T>):Histogram<T>
{
return this.union(other);
}
/**
* Returns a new set containing common elements that
* appears in both sets.
*
* Operator: this & other
* Venn: ( (###) )
*/
@:op(A & B) private inline function and(other:Histogram<T>):Histogram<T>
{
return this.intersect(other);
}
/**
* Returns a new set containing elements that appears in
* `this` that does not appear in `other`.
*
* Operator: this - other
* Venn: (###( ) )
*/
@:op(A - B) private inline function sub(other:Histogram<T>):Histogram<T>
{
return this.difference(other);
}
/**
* Returns a new set containing elements that appears in
* either `this` or `other`, but not both.
*
* Operator: this ^ other
* Venn: (###( )###)
*/
@:op(A ^ B) private inline function xor(other:Histogram<T>):Histogram<T>
{
return this.exclude(other);
}
/*==================================================
Conversions
==================================================*/
@:from public static function of<T>(seq:Seq<T>):Histogram<T>
{
var set = new Histogram<T>();
set.addMany(seq);
return set;
}
@:to public inline function toSortedPairs():Array<Pair<T,Int>>
{
return this.toSortedPairs();
}
@:to public inline function toString():String
{
return this.toString();
}
}
/**
* ...
* @author Munir Hussin
*/
class HistogramType<T> implements IMap<T,Int>
{
public var length(get, never):Int;
private var map:OrderedMap<T,Int>;
private var cmp:T->T->Int;
public function new(?cmp:T->T->Int)
{
this.cmp = cmp;
map = new OrderedMap<T,Int>(cmp);
}
private inline function get_length():Int
{
return map.length;
}
/*==================================================
IMap
==================================================*/
public function get(k:T):Null<Int>
{
return map.get(k);
}
public function set(k:T, v:Int):Void
{
map.set(k, v);
}
public function exists(k:T):Bool
{
return map.exists(k);
}
public function remove(k:T):Bool
{
return map.remove(k);
}
public function keys():Iterator<T>
{
return map.keys();
}
public function iterator():Iterator<Int>
{
return map.iterator();
}
public function toString():String
{
return map.toString();
}
/*==================================================
Histogram
==================================================*/
public function inc(v:T, count:Int, defval:Int=1):Bool
{
var keyExists = exists(v);
set(v, keyExists ? get(v) + count : defval);
return keyExists;
}
public function toSortedPairs():Array<Pair<T,Int>>
{
var arr = toPairs();
arr.sort(function(a, b) return a.tail - b.tail);
return arr;
}
public function toPairs():Array<Pair<T,Int>>
{
return [for (p in pairs()) p];
}
public function toArray():Array<T>
{
return [for (p in pairs()) for (_ in 0...p.tail) p.head];
}
public inline function pairs():Iterator<Pair<T,Int>>
{
return new MapIterator<T,Int>(this);
}
public function mergeAdd(other:Histogram<T>):Histogram<T>
{
for (x in other.pairs())
inc(x.head, x.tail);
return this;
}
public function mergeSub(other:Histogram<T>):Histogram<T>
{
for (x in other.pairs())
inc(x.head, -x.tail, -1);
return this;
}
/*==================================================
Set
==================================================*/
public function add(v:T):Bool
{
return inc(v, 1);
}
public function addMany(seq:Seq<T>):Void
{
for (v in seq) add(v);
}
public function clear():Void
{
map = new OrderedMap<T,Int>(cmp);
}
public function clone():Histogram<T>
{
var hist = new Histogram<T>(cmp);
for (p in pairs())
hist.set(p.head, p.tail);
return hist;
}
/*==================================================
Set Operations
==================================================*/
/**
* Returns true if all elements in `this` is also in `other`.
* a <= b
*/
public function subset(other:Histogram<T>):Bool
{
for (x in this.keys())
if (!other.exists(x))
return false;
return true;
}
/**
* Returns true if all elements in `this` is also in `other`
* and `other` has more elements than `this`.
* a < b
*/
public inline function properSubset(other:Histogram<T>):Bool
{
return length < other.length && subset(other);
}
/**
* Returns true if `this` and `other` have the exact
* same elements.
* a == b
*/
public inline function equals(other:Histogram<T>):Bool
{
return length == other.length && subset(other);
}
/**
* Returns true if `this` and `other` has no common elements.
*/
public function disjoint(other:Histogram<T>):Bool
{
for (x in this.keys())
if (other.exists(x))
return false;
return true;
}
/**
* Compare with another set by its cardinality.
*/
public inline function compareTo(other:Histogram<T>):Int
{
return this.length - other.length;
}
/**
* Returns a new set containing all elements from `this`
* as well as elements from `other`.
*
* Operator: this | other
* Venn: (###(###)###)
*/
public function union(other:Histogram<T>):Histogram<T>
{
var s = new Histogram<T>(cmp);
for (x in this.keys()) s.set(x, this.get(x));
for (x in other.keys()) s.inc(x, other.get(x));
return s;
}
/**
* Returns a new set containing common elements that
* appears in both sets.
*
* Operator: this & other
* Venn: ( (###) )
*/
public function intersect(other:Histogram<T>):Histogram<T>
{
var s = new Histogram<T>(cmp);
for (x in this.keys()) if (other.exists(x)) s.set(x, this.get(x) + other.get(x));
return s;
}
/**
* Returns a new set containing elements that appears in
* `this` that does not appear in `other`.
*
* Operator: this - other
* Venn: (###( ) )
*/
public function difference(other:Histogram<T>):Histogram<T>
{
var s = new Histogram<T>(cmp);
for (x in this.keys()) if (!other.exists(x)) s.set(x, this.get(x));
return s;
}
/**
* Returns a new set containing elements that appears in
* either `this` or `other`, but not both.
*
* Operator: this ^ other
* Venn: (###( )###)
*/
public function exclude(other:Histogram<T>):Histogram<T>
{
var s = new Histogram<T>(cmp);
for (x in this.keys()) if (!other.exists(x)) s.set(x, this.get(x));
for (x in other.keys()) if (!this.exists(x)) s.set(x, other.get(x));
return s;
}
/**
* Return a new set by performing a cartesian product on `other`.
*/
public function cartesianProduct<U>(other:Histogram<U>):Histogram<Pair<T,U>>
{
var s = new Histogram<Pair<T,U>>();
for (a in this.keys())
for (b in other.keys())
s.add(Pair.of(a, b));
return s;
}
}