-
Notifications
You must be signed in to change notification settings - Fork 294
/
Copy pathOpenAddressHashSet.cs
302 lines (225 loc) · 6.66 KB
/
OpenAddressHashSet.cs
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
using System;
using System.Collections;
using System.Collections.Generic;
namespace Advanced.Algorithms.DataStructures.Foundation;
internal class OpenAddressHashSet<T> : IHashSet<T>
{
private readonly int initialBucketSize;
private HashSetNode<T>[] hashArray;
internal OpenAddressHashSet(int initialBucketSize = 2)
{
this.initialBucketSize = initialBucketSize;
hashArray = new HashSetNode<T>[initialBucketSize];
}
private int BucketSize => hashArray.Length;
public int Count { get; private set; }
public bool Contains(T value)
{
var hashCode = GetHash(value);
var index = hashCode % BucketSize;
if (hashArray[index] == null) return false;
var current = hashArray[index];
//keep track of this so that we won't circle around infinitely
var hitKey = current.Value;
while (current != null)
{
if (current.Value.Equals(value)) return true;
index++;
//wrap around
if (index == BucketSize)
index = 0;
current = hashArray[index];
//reached original hit again
if (current != null && current.Value.Equals(hitKey)) break;
}
return false;
}
public void Add(T value)
{
Grow();
var hashCode = GetHash(value);
var index = hashCode % BucketSize;
if (hashArray[index] == null)
{
hashArray[index] = new HashSetNode<T>(value);
}
else
{
var current = hashArray[index];
//keep track of this so that we won't circle around infinitely
var hitKey = current.Value;
while (current != null)
{
if (current.Value.Equals(value)) throw new Exception("Duplicate value");
index++;
//wrap around
if (index == BucketSize)
index = 0;
current = hashArray[index];
if (current != null && current.Value.Equals(hitKey)) throw new Exception("HashSet is full");
}
hashArray[index] = new HashSetNode<T>(value);
}
Count++;
}
public void Remove(T value)
{
var hashCode = GetHash(value);
var curIndex = hashCode % BucketSize;
if (hashArray[curIndex] == null) throw new Exception("No such item for given value");
var current = hashArray[curIndex];
//prevent circling around infinitely
var hitKey = current.Value;
HashSetNode<T> target = null;
while (current != null)
{
if (current.Value.Equals(value))
{
target = current;
break;
}
curIndex++;
//wrap around
if (curIndex == BucketSize)
curIndex = 0;
current = hashArray[curIndex];
if (current != null && current.Value.Equals(hitKey)) throw new Exception("No such item for given value");
}
//remove
if (target == null)
{
throw new Exception("No such item for given value");
}
//delete this element
hashArray[curIndex] = null;
//now time to cleanup subsequent broken hash elements due to this emptied cell
curIndex++;
//wrap around
if (curIndex == BucketSize)
curIndex = 0;
current = hashArray[curIndex];
//until an empty cell
while (current != null)
{
//delete current
hashArray[curIndex] = null;
//add current back to table
Add(current.Value);
Count--;
curIndex++;
//wrap around
if (curIndex == BucketSize)
curIndex = 0;
current = hashArray[curIndex];
}
Count--;
Shrink();
}
public void Clear()
{
hashArray = new HashSetNode<T>[initialBucketSize];
Count = 0;
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
public IEnumerator<T> GetEnumerator()
{
return new OpenAddressHashSetEnumerator<T>(hashArray, hashArray.Length);
}
private void Grow()
{
if (!(BucketSize * 0.7 <= Count)) return;
var orgBucketSize = BucketSize;
var currentArray = hashArray;
//increase array size exponentially on demand
hashArray = new HashSetNode<T>[BucketSize * 2];
for (var i = 0; i < orgBucketSize; i++)
{
var current = currentArray[i];
if (current != null)
{
Add(current.Value);
Count--;
}
}
currentArray = null;
}
private void Shrink()
{
if (Count <= BucketSize * 0.3 && BucketSize / 2 > initialBucketSize)
{
var orgBucketSize = BucketSize;
var currentArray = hashArray;
//reduce array by half logarithamic
hashArray = new HashSetNode<T>[BucketSize / 2];
for (var i = 0; i < orgBucketSize; i++)
{
var current = currentArray[i];
if (current != null)
{
Add(current.Value);
Count--;
}
}
currentArray = null;
}
}
private int GetHash(T value)
{
return Math.Abs(value.GetHashCode());
}
}
internal class HashSetNode<T>
{
internal T Value;
internal HashSetNode(T value)
{
Value = value;
}
}
internal class OpenAddressHashSetEnumerator<TV> : IEnumerator<TV>
{
internal HashSetNode<TV>[] HashArray;
private int length;
// Enumerators are positioned before the first element
// until the first MoveNext() call.
private int position = -1;
internal OpenAddressHashSetEnumerator(HashSetNode<TV>[] hashArray, int length)
{
this.length = length;
this.HashArray = hashArray;
}
public bool MoveNext()
{
position++;
while (position < length && HashArray[position] == null)
position++;
return position < length;
}
public void Reset()
{
position = -1;
}
object IEnumerator.Current => Current;
public TV Current
{
get
{
try
{
return HashArray[position].Value;
}
catch (IndexOutOfRangeException)
{
throw new InvalidOperationException();
}
}
}
public void Dispose()
{
length = 0;
HashArray = null;
}
}