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

HashBag.cs « hashing « C5.old « Mono.C5 « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 080da67c3259ec6d6d15828ef64b9f766c98d040 (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
#if NET_2_0
/*
 Copyright (c) 2003-2004 Niels Kokholm <kokholm@itu.dk> and Peter Sestoft <sestoft@dina.kvl.dk>
 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 MSG = System.Collections.Generic;

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

		#region Constructors
		/// <summary>
		/// Create a hash bag with the deafult item hasher.
		/// </summary>
		public HashBag()
		{
			itemhasher = HasherBuilder.ByPrototype<T>.Examine();
			dict = new HashSet<KeyValuePair<T,int>>();
		}


		/// <summary>
		/// Create a hash bag with an external item hasher.
		/// </summary>
		/// <param name="h">The external hasher.</param>
		public HashBag(IHasher<T> h)
		{
			itemhasher = h;
			dict = new HashSet<KeyValuePair<T,int>>(new KeyValuePairHasher<T,int>(h));
		}
		#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; } }


		[Tested]
		int ICollection<T>.GetHashCode() { return unsequencedhashcode(); }


		[Tested]
		bool ICollection<T>.Equals(ICollection<T> that)
		{ return unsequencedequals(that); }


		/// <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)
		{
			KeyValuePair<T,int> p = new KeyValuePair<T,int>(item, 0);

			updatecheck();

			//Note: we cannot just do dict.Update. 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))
			{
				p.key = item;
				dict.Update(p);
				return true;
			}

			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>
		/// 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);
				}

				return true;
			}

			return false;
		}


		/// <summary>
		/// Remove one copy of an item from the bag, reporting the actual matching item object.
		/// </summary>
		/// <param name="item">On entry the item to remove.
		/// On exit, the actual removed item object.</param>
		/// <returns>True if item was found.</returns>
		[Tested]
		public virtual bool RemoveWithReturn(ref T item)
		{
			KeyValuePair<T,int> p = new KeyValuePair<T,int>(item, 0);

			updatecheck();
			if (dict.Find(ref p))
			{
				item = p.key;
				size--;
				if (p.value == 1)
					dict.Remove(p);
				else
				{
					p.value--;
					dict.Update(p);
				}

				return true;
			}

			return false;
		}

		/// <summary>
		/// Remove all items in a supplied collection from this bag, counting multiplicities.
		/// </summary>
		/// <param name="items">The items to remove.</param>
		[Tested]
		public virtual void RemoveAll(MSG.IEnumerable<T> items)
		{
			updatecheck();
			foreach (T item in items)
				Remove(item);
		}


		/// <summary>
		/// Remove all items from the bag, resetting internal table to initial size.
		/// </summary>
		[Tested]
		public virtual void Clear()
		{
			updatecheck();
			dict.Clear();
			size = 0;
		}


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

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

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

			dict = res.dict;
			size = res.size;
		}


		/// <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>
		/// <returns>True if all items are found.</returns>
		[Tested]
		public virtual bool ContainsAll(MSG.IEnumerable<T> items)
		{
			HashBag<T> res = new HashBag<T>(itemhasher);

			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>
		/// 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);
			}
		}

		#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="a">The array to copy to</param>
		/// <param name="i">The starting index.</param>
		[Tested]
		public override void CopyTo(T[] a, int i)
		{
			if (i < 0)
				throw new ArgumentOutOfRangeException();

			if (i + size > a.Length)
				throw new ArgumentException();

			foreach (KeyValuePair<T,int> p in dict)
				for (int j = 0; j < p.value; j++)
					a[i++] = p.key;
		}

		#endregion

		#region ISink<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>
		/// 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)
		{
			KeyValuePair<T,int> p = new KeyValuePair<T,int>(item, 1);

			updatecheck();
			if (dict.Find(ref p))
			{
				p.value++;
				dict.Update(p);
			}
			else
				dict.Add(p);

			size++;
			return true;
		}


		/// <summary>
		/// Add all items of a collection to this set.
		/// </summary>
		/// <param name="items">The items to add</param>
		[Tested]
        public virtual void AddAll(MSG.IEnumerable<T> items)
        {
            foreach (T item in items)
                Add(item);
        }

        /// <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>(MSG.IEnumerable<U> items) where U : T
        {
            foreach (T item in items)
                Add(item);
        }

        #endregion

		#region IEnumerable<T> Members
		/// <summary>
		/// Create an enumerator for this bag.
		/// </summary>
		/// <returns>The enumerator</returns>
		[Tested]
		public override MSG.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 InvalidOperationException("Collection was changed");

					left--;
					yield return p.key;
				}
			}
		}
		#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