forked from KnowledgeCenterYoutube/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path706_Design_HashMap
116 lines (88 loc) · 2.65 KB
/
706_Design_HashMap
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
Leetcode 706: Design HashMap
Detailed video explanation: https://youtu.be/Xt4TuW31rtc
========================================================
C++:
----
class MyHashMap {
vector<int> _v;
public:
/** Initialize your data structure here. */
MyHashMap():_v(1000001, -1) {
}
/** value will always be non-negative. */
void put(int key, int value) {
_v[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 _v[key];
}
/** Removes the mapping of the specified value key if this map contains a mapping for the key */
void remove(int key) {
_v[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);
*/
Java:
-----
class MyHashMap {
private int[] _v = new int[1000001];
/** Initialize your data structure here. */
public MyHashMap() {
for(int i = 0; i < 1000001; ++i)
_v[i] = -1;
}
/** value will always be non-negative. */
public void put(int key, int value) {
_v[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 _v[key];
}
/** Removes the mapping of the specified value key if this map contains a mapping for the key */
public void remove(int key) {
_v[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);
*/
Python3:
--------
class MyHashMap:
def __init__(self):
"""
Initialize your data structure here.
"""
self._v = [-1]*1000001
def put(self, key: int, value: int) -> None:
"""
value will always be non-negative.
"""
self._v[key] = value
def get(self, key: int) -> int:
"""
Returns the value to which the specified key is mapped, or -1 if this map contains no mapping for the key
"""
return self._v[key]
def remove(self, key: int) -> None:
"""
Removes the mapping of the specified value key if this map contains a mapping for the key
"""
self._v[key] = -1
# Your MyHashMap object will be instantiated and called as such:
# obj = MyHashMap()
# obj.put(key,value)
# param_2 = obj.get(key)
# obj.remove(key)