-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDesign_HashMap.cpp
More file actions
32 lines (27 loc) · 797 Bytes
/
Design_HashMap.cpp
File metadata and controls
32 lines (27 loc) · 797 Bytes
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
class MyHashMap {
public:
/** Initialize your data structure here. */
int mp[1000001];
MyHashMap() {
memset(mp, -1, 1000001);
}
/** value will always be non-negative. */
void put(int key, int value) {
mp[key] = value;
}
/** Returns the value to which the specified key is mapped, or -1 if this map contains no mapping for the key */
int get(int key) {
return mp[key];
}
/** Removes the mapping of the specified value key if this map contains a mapping for the key */
void remove(int key) {
mp[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);
*/