Welcome to mirror list, hosted at ThFree Co, Russian Federation.

HashBag.cs « hashing « C5 « Mono.C5 « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5517b4b63b630a95f47e3d12aa761fe2998fc04e (plain)
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
#if NET_2_0
/*
 Copyright (c) 2003-2006 Niels Kokholm and Peter Sestoft
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
 in the Software without restriction, including without limitation the rights
 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 
 The above copyright notice and this permission notice shall be included in
 all copies or substantial portions of the Software.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
*/

using System;
using System.Diagnostics;
using SCG = System.Collections.Generic;

namespace C5
{
  /// <summary>
  /// A bag collection based on a hash table of (item,count) pairs. 
  /// </summary>
  [Serializable]
  public class HashBag<T> : CollectionBase<T>, ICollection<T>
  {
    #region Fields
    HashSet<KeyValuePair<T, int>> dict;
    #endregion

    #region Events

    /// <summary>
    /// 
    /// </summary>
    /// <value></value>
    public override EventTypeEnum ListenableEvents { get { return EventTypeEnum.Basic; } }

    #endregion

    #region Constructors
    /// <summary>
    /// Create a hash bag with the deafult item equalityComparer.
    /// </summary>
    public HashBag() : this(EqualityComparer<T>.Default) { }

    /// <summary>
    /// Create a hash bag with an external item equalityComparer.
    /// </summary>
    /// <param name="itemequalityComparer">The external item equalityComparer.</param>
    public HashBag(SCG.IEqualityComparer<T> itemequalityComparer)
      : base(itemequalityComparer)
    {
      dict = new HashSet<KeyValuePair<T, int>>(new KeyValuePairEqualityComparer<T, int>(itemequalityComparer));
    }

    /// <summary>
    /// Create a hash bag with external item equalityComparer, prescribed initial table size and default fill threshold (66%)
    /// </summary>
    /// <param name="capacity">Initial table size (rounded to power of 2, at least 16)</param>
    /// <param name="itemequalityComparer">The external item equalityComparer</param>
    public HashBag(int capacity, SCG.IEqualityComparer<T> itemequalityComparer)
      : base(itemequalityComparer)
    {
      dict = new HashSet<KeyValuePair<T, int>>(capacity, new KeyValuePairEqualityComparer<T, int>(itemequalityComparer));
    }


    /// <summary>
    /// Create a hash bag with external item equalityComparer, prescribed initial table size and fill threshold.
    /// </summary>
    /// <param name="capacity">Initial table size (rounded to power of 2, at least 16)</param>
    /// <param name="fill">Fill threshold (valid range 10% to 90%)</param>
    /// <param name="itemequalityComparer">The external item equalityComparer</param>
    public HashBag(int capacity, double fill, SCG.IEqualityComparer<T> itemequalityComparer)
      : base(itemequalityComparer)
    {
      dict = new HashSet<KeyValuePair<T, int>>(capacity, fill, new KeyValuePairEqualityComparer<T, int>(itemequalityComparer));
    }

    #endregion

    #region IEditableCollection<T> Members

    /// <summary>
    /// The complexity of the Contains operation
    /// </summary>
    /// <value>Always returns Speed.Constant</value>
    [Tested]
    public virtual Speed ContainsSpeed { [Tested]get { return Speed.Constant; } }

    /// <summary>
    /// Check if an item is in the bag 
    /// </summary>
    /// <param name="item">The item to look for</param>
    /// <returns>True if bag contains item</returns>
    [Tested]
    public virtual bool Contains(T item)
    { return dict.Contains(new KeyValuePair<T, int>(item, 0)); }


    /// <summary>
    /// Check if an item (collection equal to a given one) is in the bag and
    /// if so report the actual item object found.
    /// </summary>
    /// <param name="item">On entry, the item to look for.
    /// On exit the item found, if any</param>
    /// <returns>True if bag contains item</returns>
    [Tested]
    public virtual bool Find(ref T item)
    {
      KeyValuePair<T, int> p = new KeyValuePair<T, int>(item, 0);

      if (dict.Find(ref p))
      {
        item = p.Key;
        return true;
      }

      return false;
    }


    /// <summary>
    /// Check if an item (collection equal to a given one) is in the bag and
    /// if so replace the item object in the bag with the supplied one.
    /// </summary>
    /// <param name="item">The item object to update with</param>
    /// <returns>True if item was found (and updated)</returns>
    [Tested]
    public virtual bool Update(T item)
    { T olditem = default(T); return Update(item, out olditem); }


    /// <summary>
    /// 
    /// </summary>
    /// <param name="item"></param>
    /// <param name="olditem"></param>
    /// <returns></returns>
    public virtual bool Update(T item, out T olditem)
    {
      KeyValuePair<T, int> p = new KeyValuePair<T, int>(item, 0);

      updatecheck();

      //Note: we cannot just do dict.Update: we have to lookup the count before we 
      //know what to update with. There is of course a way around if we use the 
      //implementation of hashset -which we do not want to do.
      //The hashbag is moreover mainly a proof of concept
      if (dict.Find(ref p))
      {
        olditem = p.Key;
        p.Key = item;
        dict.Update(p);
        if (ActiveEvents != 0)
          raiseForUpdate(item, olditem, p.Value);
        return true;
      }

      olditem = default(T);
      return false;
    }


    /// <summary>
    /// Check if an item (collection equal to a given one) is in the bag.
    /// If found, report the actual item object in the bag,
    /// else add the supplied one.
    /// </summary>
    /// <param name="item">On entry, the item to look for or add.
    /// On exit the actual object found, if any.</param>
    /// <returns>True if item was found</returns>
    [Tested]
    public virtual bool FindOrAdd(ref T item)
    {
      updatecheck();
      if (Find(ref item))
        return true;

      Add(item);
      return false;
    }


    /// <summary>
    /// Check if an item (collection equal to a supplied one) is in the bag and
    /// if so replace the item object in the set with the supplied one; else
    /// add the supplied one.
    /// </summary>
    /// <param name="item">The item to look for and update or add</param>
    /// <returns>True if item was updated</returns>
    [Tested]
    public virtual bool UpdateOrAdd(T item)
    {
      updatecheck();
      if (Update(item))
        return true;

      Add(item);
      return false;
    }

    /// <summary>
    /// 
    /// </summary>
    /// <param name="item"></param>
    /// <param name="olditem"></param>
    /// <returns></returns>
    public virtual bool UpdateOrAdd(T item, out T olditem)
    {
      updatecheck();
      if (Update(item, out olditem))
        return true;

      Add(item);
      return false;
    }

    /// <summary>
    /// Remove one copy af an item from the bag
    /// </summary>
    /// <param name="item">The item to remove</param>
    /// <returns>True if item was (found and) removed </returns>
    [Tested]
    public virtual bool Remove(T item)
    {
      KeyValuePair<T, int> p = new KeyValuePair<T, int>(item, 0);

      updatecheck();
      if (dict.Find(ref p))
      {
        size--;
        if (p.Value == 1)
          dict.Remove(p);
        else
        {
          p.Value--;
          dict.Update(p);
        }
        if (ActiveEvents != 0)
          raiseForRemove(p.Key);
        return true;
      }

      return false;
    }


    /// <summary>
    /// Remove one copy of an item from the bag, reporting the actual matching item object.
    /// </summary>
    /// <param name="item">The value to remove.</param>
    /// <param name="removeditem">The removed value.</param>
    /// <returns>True if item was found.</returns>
    [Tested]
    public virtual bool Remove(T item, out T removeditem)
    {
      updatecheck();
      KeyValuePair<T, int> p = new KeyValuePair<T, int>(item, 0);
      if (dict.Find(ref p))
      {
        removeditem = p.Key;
        size--;
        if (p.Value == 1)
          dict.Remove(p);
        else
        {
          p.Value--;
          dict.Update(p);
        }
        if (ActiveEvents != 0)
          raiseForRemove(removeditem);

        return true;
      }

      removeditem = default(T);
      return false;
    }

    /// <summary>
    /// Remove all items in a supplied collection from this bag, counting multiplicities.
    /// </summary>
    /// <typeparam name="U"></typeparam>
    /// <param name="items">The items to remove.</param>
    [Tested]
    public virtual void RemoveAll<U>(SCG.IEnumerable<U> items) where U : T
    {
#warning Improve if items is a counting bag
      updatecheck();
      bool mustRaise = (ActiveEvents & (EventTypeEnum.Changed | EventTypeEnum.Removed)) != 0;
      RaiseForRemoveAllHandler raiseHandler = mustRaise ? new RaiseForRemoveAllHandler(this) : null;
      foreach (U item in items)
      {
        KeyValuePair<T, int> p = new KeyValuePair<T, int>(item, 0);
        if (dict.Find(ref p))
        {
          size--;
          if (p.Value == 1)
            dict.Remove(p);
          else
          {
            p.Value--;
            dict.Update(p);
          }
          if (mustRaise)
            raiseHandler.Remove(p.Key);
        }
      }
      if (mustRaise)
        raiseHandler.Raise();
    }

    /// <summary>
    /// Remove all items from the bag, resetting internal table to initial size.
    /// </summary>
    [Tested]
    public virtual void Clear()
    {
      updatecheck();
      if (size == 0)
        return;
      dict.Clear();
      int oldsize = size;
      size = 0;
      if ((ActiveEvents & EventTypeEnum.Cleared) != 0)
        raiseCollectionCleared(true, oldsize);
      if ((ActiveEvents & EventTypeEnum.Changed) != 0)
        raiseCollectionChanged();
    }


    /// <summary>
    /// Remove all items *not* in a supplied collection from this bag,
    /// counting multiplicities.
    /// </summary>
    /// <typeparam name="U"></typeparam>
    /// <param name="items">The items to retain</param>
    [Tested]
    public virtual void RetainAll<U>(SCG.IEnumerable<U> items) where U : T
    {
      updatecheck();

      HashBag<T> res = new HashBag<T>(itemequalityComparer);

      foreach (U item in items)
      {
        KeyValuePair<T, int> p = new KeyValuePair<T, int>(item);
        if (dict.Find(ref p))
        {
          KeyValuePair<T, int> q = p;
          if (res.dict.Find(ref q))
          {
            if (q.Value < p.Value)
            {
              q.Value++;
              res.dict.Update(q);
              res.size++;
            }
          }
          else
          {
            q.Value = 1;
            res.dict.Add(q);
            res.size++;
          }
        }
      }

      if (size == res.size)
        return;

      CircularQueue<T> wasRemoved = null;
      if ((ActiveEvents & EventTypeEnum.Removed) != 0)
      {
        wasRemoved = new CircularQueue<T>();
        foreach (KeyValuePair<T, int> p in dict)
        {
          int removed = p.Value - res.ContainsCount(p.Key);
          if (removed > 0)
#warning We could send bag events here easily using a CircularQueue of (should?)
            for (int i = 0; i < removed; i++)
              wasRemoved.Enqueue(p.Key);
        }
      }
      dict = res.dict;
      size = res.size;

      if ((ActiveEvents & EventTypeEnum.Removed) != 0)
        raiseForRemoveAll(wasRemoved);
      else if ((ActiveEvents & EventTypeEnum.Changed) != 0)
        raiseCollectionChanged();
    }

    /// <summary>
    /// Check if all items in a supplied collection is in this bag
    /// (counting multiplicities). 
    /// </summary>
    /// <param name="items">The items to look for.</param>
    /// <typeparam name="U"></typeparam>
    /// <returns>True if all items are found.</returns>
    [Tested]
    public virtual bool ContainsAll<U>(SCG.IEnumerable<U> items) where U : T
    {
      HashBag<T> res = new HashBag<T>(itemequalityComparer);

      foreach (T item in items)
        if (res.ContainsCount(item) < ContainsCount(item))
          res.Add(item);
        else
          return false;

      return true;
    }


    /// <summary>
    /// Create an array containing all items in this bag (in enumeration order).
    /// </summary>
    /// <returns>The array</returns>
    [Tested]
    public override T[] ToArray()
    {
      T[] res = new T[size];
      int ind = 0;

      foreach (KeyValuePair<T, int> p in dict)
        for (int i = 0; i < p.Value; i++)
          res[ind++] = p.Key;

      return res;
    }


    /// <summary>
    /// Count the number of times an item is in this set.
    /// </summary>
    /// <param name="item">The item to look for.</param>
    /// <returns>The count</returns>
    [Tested]
    public virtual int ContainsCount(T item)
    {
      KeyValuePair<T, int> p = new KeyValuePair<T, int>(item, 0);

      if (dict.Find(ref p))
        return p.Value;

      return 0;
    }

    /// <summary>
    /// 
    /// </summary>
    /// <returns></returns>
    public virtual ICollectionValue<T> UniqueItems() { return new DropMultiplicity<T>(dict); }

    /// <summary>
    /// 
    /// </summary>
    /// <returns></returns>
    public virtual ICollectionValue<KeyValuePair<T, int>> ItemMultiplicities()
    {
      return new GuardedCollectionValue<KeyValuePair<T, int>>(dict);
    }

    /// <summary>
    /// Remove all copies of item from this set.
    /// </summary>
    /// <param name="item">The item to remove</param>
    [Tested]
    public virtual void RemoveAllCopies(T item)
    {
      updatecheck();

      KeyValuePair<T, int> p = new KeyValuePair<T, int>(item, 0);

      if (dict.Find(ref p))
      {
        size -= p.Value;
        dict.Remove(p);
        if ((ActiveEvents & EventTypeEnum.Removed) != 0)
          raiseItemsRemoved(p.Key, p.Value);
        if ((ActiveEvents & EventTypeEnum.Changed) != 0)
          raiseCollectionChanged();
      }
    }

    #endregion

    #region ICollection<T> Members


    /// <summary>
    /// Copy the items of this bag to part of an array.
    /// <exception cref="ArgumentOutOfRangeException"/> if i is negative.
    /// <exception cref="ArgumentException"/> if the array does not have room for the items.
    /// </summary>
    /// <param name="array">The array to copy to</param>
    /// <param name="index">The starting index.</param>
    [Tested]
    public override void CopyTo(T[] array, int index)
    {
      if (index < 0 || index >= array.Length || index + Count > array.Length)
        throw new ArgumentOutOfRangeException();

      foreach (KeyValuePair<T, int> p in dict)
        for (int j = 0; j < p.Value; j++)
          array[index++] = p.Key;
    }

    #endregion

    #region IExtensible<T> Members

    /// <summary>
    /// Report if this is a set collection.
    /// </summary>
    /// <value>Always true</value>
    [Tested]
    public virtual bool AllowsDuplicates { [Tested] get { return true; } }

    /// <summary>
    /// By convention this is true for any collection with set semantics.
    /// </summary>
    /// <value>True if only one representative of a group of equal items 
    /// is kept in the collection together with the total count.</value>
    public virtual bool DuplicatesByCounting { get { return true; } }

    /// <summary>
    /// Add an item to this bag.
    /// </summary>
    /// <param name="item">The item to add.</param>
    /// <returns>Always true</returns>
    [Tested]
    public virtual bool Add(T item)
    {
      updatecheck();
      add(ref item);
      if (ActiveEvents != 0)
        raiseForAdd(item);
      return true;
    }

    private void add(ref T item)
    {
      KeyValuePair<T, int> p = new KeyValuePair<T, int>(item, 1);
      if (dict.Find(ref p))
      {
        p.Value++;
        dict.Update(p);
        item = p.Key;
      }
      else
        dict.Add(p);
      size++;
    }

    /// <summary>
    /// Add the elements from another collection with a more specialized item type 
    /// to this collection. 
    /// </summary>
    /// <typeparam name="U">The type of items to add</typeparam>
    /// <param name="items">The items to add</param>
    public virtual void AddAll<U>(SCG.IEnumerable<U> items) where U : T
    {
      updatecheck();
#warning We could easily raise bag events
      bool mustRaiseAdded = (ActiveEvents & EventTypeEnum.Added) != 0;
      CircularQueue<T> wasAdded = mustRaiseAdded ? new CircularQueue<T>() : null;
      bool wasChanged = false;
      foreach (T item in items)
      {
        T jtem = item;
        add(ref jtem);
        wasChanged = true;
        if (mustRaiseAdded)
          wasAdded.Enqueue(jtem);
      }
      if (!wasChanged)
        return;
      if (mustRaiseAdded)
        foreach (T item in wasAdded)
          raiseItemsAdded(item, 1);
      if ((ActiveEvents & EventTypeEnum.Changed) != 0)
        raiseCollectionChanged();
    }

    #endregion

    #region IEnumerable<T> Members


    /// <summary>
    /// Choose some item of this collection. 
    /// </summary>
    /// <exception cref="NoSuchItemException">if collection is empty.</exception>
    /// <returns></returns>
    public override T Choose()
    {
      return dict.Choose().Key;
    }

    /// <summary>
    /// Create an enumerator for this bag.
    /// </summary>
    /// <returns>The enumerator</returns>
    [Tested]
    public override SCG.IEnumerator<T> GetEnumerator()
    {
      int left;
      int mystamp = stamp;

      foreach (KeyValuePair<T, int> p in dict)
      {
        left = p.Value;
        while (left > 0)
        {
          if (mystamp != stamp)
            throw new CollectionModifiedException();

          left--;
          yield return p.Key;
        }
      }
    }
    #endregion

    #region ICloneable Members

    /// <summary>
    /// Make a shallow copy of this HashBag.
    /// </summary>
    /// <returns></returns>
    public virtual object Clone()
    {
      //TODO: make sure this 
      HashBag<T> clone = new HashBag<T>(dict.Count > 0 ? dict.Count : 1, itemequalityComparer);
      //TODO: make sure this really adds in the counting bag way!
      clone.AddAll(this);
      return clone;
    }

    #endregion


    #region Diagnostics
    /// <summary>
    /// Test internal structure of data (invariants)
    /// </summary>
    /// <returns>True if pass</returns>
    [Tested]
    public virtual bool Check()
    {
      bool retval = dict.Check();
      int count = 0;

      foreach (KeyValuePair<T, int> p in dict)
        count += p.Value;

      if (count != size)
      {
        Console.WriteLine("count({0}) != size({1})", count, size);
        retval = false;
      }

      return retval;
    }
    #endregion
  }
}

#endif