-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDesignHashMap.cpp
More file actions
74 lines (61 loc) · 1.2 KB
/
DesignHashMap.cpp
File metadata and controls
74 lines (61 loc) · 1.2 KB
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
class MyHashMap
{
vector<vector<pair<int, int>>> mainList;
int MAXI = 100000;
int hash_i(int key)
{
return key % MAXI;
}
public:
/** Initialize your data structure here. */
MyHashMap()
{
mainList.resize(MAXI);
}
/** value will always be non-negative. */
void put(int key, int value)
{
int i = hash_i(key);
auto &rowList = mainList[i];
for (auto &it : rowList)
{
if (it.first == key)
{
it.second = value;
return;
}
}
mainList[i].push_back({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)
{
int i = hash_i(key);
auto &rowList = mainList[i];
for (auto &it : rowList)
{
if (it.first == key)
return it.second;
}
return -1;
}
/** Removes the mapping of the specified value key if this map contains a mapping for the key */
void remove(int key)
{
int i = hash_i(key);
auto &rowList = mainList[i];
for (auto it = rowList.begin(); it != rowList.end(); it++)
{
if (it->first == key)
rowList.erase(it);
return;
}
}
};
int main()
{
MyHashMap *obj = new MyHashMap();
obj->put(key, value);
int param_2 = obj->get(key);
obj->remove(key);
}