-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path034_Design_HashMap
More file actions
31 lines (24 loc) · 871 Bytes
/
Copy path034_Design_HashMap
File metadata and controls
31 lines (24 loc) · 871 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
Design a HashMap without using any built-in hash table libraries.
Implement the MyHashMap class:
MyHashMap() initializes the object with an empty map.
void put(int key, int value) inserts a (key, value) pair into the HashMap. If the key already exists in the map, update the corresponding value.
int get(int key) returns the value to which the specified key is mapped, or -1 if this map contains no mapping for the key.
void remove(key) removes the key and its corresponding value if the map contains the mapping for the key.
C++
class MyHashMap {
public:
vector<int> map;
MyHashMap() {
map.resize(1e6 + 1);
fill(map.begin(), map.end(), -1);
}
void put(int key, int value) {
map[key] = value;
}
int get(int key) {
return map[key];
}
void remove(int key) {
map[key] = -1;
}
};