-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathInsertDeleteRandom.java
297 lines (279 loc) · 7.37 KB
/
InsertDeleteRandom.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
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
/*https://leetcode.com/problems/insert-delete-getrandom-o1/*/
/*Prateekshya*/
class Hash
{
int[] primes = {2,3,5,7,11,13,17,19,23,29,31};
int capacity = 200000;
int[] hash;
int[] location;
int[] status;
Hash()
{
hash = new int[capacity];
location = new int[capacity];
status = new int[capacity];
}
public boolean contains(int val)
{
int index = getHash1(val);
if (status[index] == 1 && hash[index] == val)
return true;
index = getHash2(val);
if (status[index] == 1 && hash[index] == val)
return true;
int probe = 2;
for (int i = 0; i < 5; ++i)
{
index += probe;
index %= capacity;
probe <<= 1;
if (status[index] == 1 && hash[index] == val)
return true;
}
while (status[index] == 1 || status[index] == 2)
{
if (status[index] == 1 && hash[index] == val)
return true;
++index;
}
return false;
}
public int getLocation(int val)
{
int index = getHash1(val);
if (status[index] == 1 && hash[index] == val)
return location[index];
index = getHash2(val);
if (status[index] == 1 && hash[index] == val)
return location[index];
int probe = 2;
for (int i = 0; i < 5; ++i)
{
index += probe;
index %= capacity;
probe <<= 1;
if (status[index] == 1 && hash[index] == val)
return location[index];
}
while (status[index] == 1 || status[index] == 2)
{
if (status[index] == 1 && hash[index] == val)
return location[index];
++index;
}
return -1;
}
public void store(int val, int loc)
{
int index = getHash1(val);
if (status[index] != 1)
{
status[index] = 1;
hash[index] = val;
location[index] = loc;
return;
}
index = getHash2(val);
if (status[index] != 1)
{
status[index] = 1;
hash[index] = val;
location[index] = loc;
return;
}
int probe = 2;
for (int i = 0; i < 5; ++i)
{
index += probe;
index %= capacity;
probe <<= 1;
if (status[index] != 1)
{
status[index] = 1;
hash[index] = val;
location[index] = loc;
return;
}
}
while (status[++index] == 1);
status[index] = 1;
hash[index] = val;
location[index] = loc;
return;
}
public boolean remove(int val)
{
int index = getHash1(val);
if (status[index] == 1 && hash[index] == val)
{
status[index] = 2;
return true;
}
index = getHash2(val);
if (status[index] == 1 && hash[index] == val)
{
status[index] = 2;
return true;
}
int probe = 2;
for (int i = 0; i < 5; ++i)
{
index += probe;
index %= capacity;
probe <<= 1;
if (status[index] == 1 && hash[index] == val)
{
status[index] = 2;
return true;
}
}
while (status[index] == 1 || status[index] == 2)
{
if (hash[index] == val)
{
status[index] = 2;
return true;
}
++index;
}
return false;
}
public void update(int val, int loc)
{
int index = getHash1(val);
if (status[index] == 1 && hash[index] == val)
{
location[index] = loc;
return;
}
index = getHash2(val);
if (status[index] == 1 && hash[index] == val)
{
location[index] = loc;
return;
}
int probe = 2;
for (int i = 0; i < 5; ++i)
{
index += probe;
index %= capacity;
probe <<= 1;
if (status[index] == 1 && hash[index] == val)
{
location[index] = loc;
return;
}
}
while (status[index] == 1 || status[index] == 2)
{
if (hash[index] == val)
{
location[index] = loc;
return;
}
++index;
}
}
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;
}
}
class RandomizedSet {
Hash hash;
int[] arr;
int capacity = 1, size;
public RandomizedSet() {
arr = new int[capacity];
size = 0;
hash = new Hash();
}
public boolean insert(int val) {
if (hash.contains(val))
return false;
if (size == capacity)
{
int[] temp = new int[capacity*2];
for (int i = 0; i < capacity; ++i)
temp[i] = arr[i];
arr = temp;
capacity *= 2;
}
arr[size] = val;
hash.store(val,size);
++size;
return true;
}
public boolean remove(int val) {
int location = hash.getLocation(val);
if (location == -1)
return false;
hash.remove(val);
arr[location] = arr[size-1];
hash.update(arr[location],location);
--size;
return true;
}
public int getRandom() {
Random random = new Random();
int n = random.nextInt(size);
return arr[n];
}
}
/*Efficient solution*/
class RandomizedSet {
private ArrayList<Integer> arrayList;
private HashMap<Integer, Integer> hashMap;
private Random random;
public RandomizedSet() {
this.arrayList = new ArrayList<Integer>();
this.hashMap = new HashMap<Integer, Integer>();
this.random = new Random();
}
public boolean insert(int val) {
if(hashMap.containsKey(val)) return false;
hashMap.put(val, arrayList.size());
arrayList.add(val);
return true;
}
public boolean remove(int val) {
if(!hashMap.containsKey(val)) return false;
int last = arrayList.get(arrayList.size()-1);
int index = hashMap.get(val);
arrayList.set(index, last);
hashMap.put(last, index);
arrayList.remove(arrayList.size()-1);
hashMap.remove(val);
return true;
}
public int getRandom() {
return arrayList.get(random.nextInt(arrayList.size()));
}
}