-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathHashSetDesign.java
229 lines (212 loc) · 5.51 KB
/
HashSetDesign.java
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
/*https://leetcode.com/problems/design-hashset/*/
/*Prateekshya*/
class MyHashSet {
int[] primes = {2,3,5,7,11,13,17,19,23,29,31};
int capacity = 10000;
int[] keys;
int[] status;
public MyHashSet() {
keys = new int[capacity];
status = new int[capacity];
}
public void add(int key) {
remove(key);
int index = getHash1(key);
if (status[index] != 1)
{
status[index] = 1;
keys[index] = key;
return;
}
index = getHash2(key);
if (status[index] != 1)
{
status[index] = 1;
keys[index] = key;
return;
}
int probe = 2;
for (int i = 0; i < 5; ++i)
{
index += probe;
index %= capacity;
probe <<= 1;
if (status[index] != 1)
{
status[index] = 1;
keys[index] = key;
return;
}
}
while (status[++index] == 1);
status[index] = 1;
keys[index] = key;
return;
}
public void remove(int key) {
int index = getHash1(key);
if (status[index] == 1 && keys[index] == key)
{
status[index] = 2;
return;
}
index = getHash2(key);
if (status[index] == 1 && keys[index] == key)
{
status[index] = 2;
return;
}
int probe = 2;
for (int i = 0; i < 5; ++i)
{
index += probe;
index %= capacity;
probe <<= 1;
if (status[index] == 1 && keys[index] == key)
{
status[index] = 2;
return;
}
}
while (status[index] == 1 || status[index] == 2)
{
if (keys[index] == key)
{
status[index] = 2;
return;
}
++index;
}
return;
}
public boolean contains(int key) {
int index = getHash1(key);
if (status[index] == 1 && keys[index] == key)
return true;
index = getHash2(key);
if (status[index] == 1 && keys[index] == key)
return true;
int probe = 2;
for (int i = 0; i < 5; ++i)
{
index += probe;
index %= capacity;
probe <<= 1;
if (status[index] == 1 && keys[index] == key)
return true;
}
while (status[index] == 1 || status[index] == 2)
{
if (status[index] == 1 && keys[index] == key)
return true;
++index;
}
return false;
}
private int getHash1(int val)
{
int copy = Math.abs(val);
int sum1 = 0, sum2 = 0;
boolean trigger = true;
while (copy > 0)
{
if (trigger)
{
sum1 += copy%10;
}
else
{
sum2 += copy%10;
}
trigger = trigger ? false : true;
copy /= 10;
}
return val < 0 ? (Math.abs(val)+Math.abs(sum1-sum2))%capacity : Math.abs(sum1-sum2)%capacity;
}
private int getHash2(int val)
{
int copy = Math.abs(val);
int sum = 0, i = 0;
while (copy > 0)
{
sum += primes[i++]*(copy%10);
copy /= 10;
}
return sum%capacity;
}
}
/*Simple Solution, modified from Hashmap*/
class MyHashSet
{
class Node {
public int key;
public boolean value;
public Node next;
public Node(int key, boolean value){
this.key = key;
this.value = value;
this.next = null;
}
}
public Node[] buckets;
public MyHashSet()
{
buckets = new Node[10000];
}
public void add(int key)
{
int hashKey = hashCode(key);
if(buckets[hashKey]==null){
buckets[hashKey] = new Node(key,true);
}else{
Node node = buckets[hashKey];
while(node.next!=null &&
node.next.key!=key){
node = node.next;
}
if(node.key == key){
node.value = true;
} else if(node.next!=null && node.next.key == key){
node.next.value = true;
} else {
Node newNode = new Node(key,true);
node.next = newNode;
}
}
}
public void remove(int key)
{
int hashKey = hashCode(key);
if(buckets[hashKey] == null)
return;
else{
Node node = buckets[hashKey];
while(node.key!=key && node.next!=null && node.next.key!=key){
node = node.next;
}
if(node.key == key){
buckets[hashKey] = node.next;
} else if(node.next!=null && node.next.key==key){
node.next = node.next.next;
}
}
}
public boolean contains(int key)
{
int hashKey = hashCode(key);
if(buckets[hashKey]==null)
return false;
else{
Node node = buckets[hashKey];
while(node!=null){
if(node.key == key)
return true;
node = node.next;
}
return false;
}
}
private int hashCode(int key){
return key % buckets.length;
}
}