-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
33 lines (28 loc) · 849 Bytes
/
main.cpp
File metadata and controls
33 lines (28 loc) · 849 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
33
class MyHashMap {
public:
/** Initialize your data structure here. */
vector<int> hashMap;
MyHashMap() {
}
/** value will always be non-negative. */
void put(int key, int value) {
if(key >= hashMap.size()){
for(int i = hashMap.size(); i <= key; i++){
hashMap.push_back(-1);
}
}
hashMap[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) {
if(key >= hashMap.size())
return -1;
return hashMap[key];
}
/** Removes the mapping of the specified value key if this map contains a mapping for the key */
void remove(int key) {
if(key >= hashMap.size())
return;
hashMap[key] = -1;
}
};