-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathHashMapDesign.java
241 lines (221 loc) · 5.92 KB
/
HashMapDesign.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
/*https://leetcode.com/problems/design-hashmap/*/
/*Prateekshya*/
class MyHashMap {
int[] primes = {2,3,5,7,11,13,17,19,23,29,31};
int capacity = 10000;
int[] keys;
int[] values;
int[] status;
public MyHashMap() {
keys = new int[capacity];
values = new int[capacity];
status = new int[capacity];
}
public void put(int key, int value) {
remove(key);
int index = getHash1(key);
if (status[index] != 1)
{
status[index] = 1;
keys[index] = key;
values[index] = value;
return;
}
index = getHash2(key);
if (status[index] != 1)
{
status[index] = 1;
keys[index] = key;
values[index] = value;
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;
values[index] = value;
return;
}
}
while (status[++index] == 1);
status[index] = 1;
keys[index] = key;
values[index] = value;
return;
}
public int get(int key) {
int index = getHash1(key);
if (status[index] == 1 && keys[index] == key)
return values[index];
index = getHash2(key);
if (status[index] == 1 && keys[index] == key)
return values[index];
int probe = 2;
for (int i = 0; i < 5; ++i)
{
index += probe;
index %= capacity;
probe <<= 1;
if (status[index] == 1 && keys[index] == key)
return values[index];
}
while (status[index] == 1 || status[index] == 2)
{
if (status[index] == 1 && keys[index] == key)
return values[index];
++index;
}
return -1;
}
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;
}
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*/
class MyHashMap {
class Node {
public int key;
public int value;
public Node next;
public Node(int key, int value){
this.key = key;
this.value = value;
this.next = null;
}
}
public Node[] buckets;
public MyHashMap() {
buckets = new Node[10000];
}
public void put(int key, int value) {
int hashKey = hashCode(key);
if(buckets[hashKey]==null){
buckets[hashKey] = new Node(key, value);
}else{
Node node = buckets[hashKey];
while(node.next!=null &&
node.next.key!=key){
node = node.next;
}
if(node.key == key){
node.value = value;
} else if(node.next!=null && node.next.key == key){
node.next.value = value;
} else {
Node newNode = new Node(key,value);
node.next = newNode;
}
}
}
public int get(int key) {
int hashKey = hashCode(key);
if(buckets[hashKey]==null)
return -1;
else{
Node node = buckets[hashKey];
while(node!=null){
if(node.key == key)
return node.value;
node = node.next;
}
return -1;
}
}
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;
}
}
}
private void printNode(Node node){
Node temp = node;
while(temp!=null){
System.out.print(temp.key + " -> ");
temp = temp.next;
}
System.out.print("\n");
}
private int hashCode(int key){
return key % buckets.length;
}
}