-
Notifications
You must be signed in to change notification settings - Fork 28
/
Design_HashMap.cpp
34 lines (29 loc) · 903 Bytes
/
Design_HashMap.cpp
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
class MyHashMap {
int[] entry;
/** Initialize your data structure here. */
public MyHashMap() {
entry = new int[1000001];
for(int i = 0; i < entry.length; i++) {
entry[i] = -1;
}
}
/** value will always be non-negative. */
public void put(int key, int value) {
entry[key] = value;
}
/** Returns the value to which the specified key is mapped, or -1 if this map contains no mapping for the key */
public int get(int key) {
return entry[key];
}
/** Removes the mapping of the specified value key if this map contains a mapping for the key */
public void remove(int key) {
entry[key] = -1;
}
}
/**
* Your MyHashMap object will be instantiated and called as such:
* MyHashMap obj = new MyHashMap();
* obj.put(key,value);
* int param_2 = obj.get(key);
* obj.remove(key);
*/