-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path0706-Design_Hashmap.cpp
More file actions
93 lines (83 loc) · 2.53 KB
/
0706-Design_Hashmap.cpp
File metadata and controls
93 lines (83 loc) · 2.53 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*******************************************************************************
* 0706-Design_Hashmap.cpp
* Billy.Ljm
* 04 October 2023
*
* =======
* Problem
* =======
* https://leetcode.com/problems/design-hashmap/
*
* 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.
*
* ===========
* My Approach
* ===========
* We'll use the trivial identity hash function, and just store the values in
* a vector. Since the values are guaranteed to be >= 0, we can use -1 as a
* placeholder for empty keys.
*
* This has a time complexity of O(1) for all methods, and a space complexity of
* O(1) since the maximum space is always used.
******************************************************************************/
#include <iostream>
#include <vector>
#include <map>
using namespace std;
/**
* << operator for vectors
*/
template <typename T>
std::ostream& operator<<(std::ostream& os, const std::vector<T>& v) {
os << "[";
for (const auto elem : v) {
os << elem << ",";
}
if (v.size() > 0) os << "\b";
os << "]";
return os;
}
/**
* Solution
*/
class MyHashMap {
public:
vector<int> hash;
MyHashMap() {
hash = vector<int>(1000001, -1);
}
void put(int key, int value) {
hash[key] = value;
}
int get(int key) {
return hash[key];
}
void remove(int key) {
hash[key] = -1;
}
};
/**
* Test cases
*/
int main(void) {
// test case 1
MyHashMap myHashMap = MyHashMap();
myHashMap.put(1, 1); // The map is now [[1,1]]
myHashMap.put(2, 2); // The map is now [[1,1], [2,2]]
std::cout << myHashMap.get(1) << endl; // return 1, The map is now [[1,1], [2,2]]
std::cout << myHashMap.get(3) << endl; // return -1 (i.e., not found), The map is now [[1,1], [2,2]]
myHashMap.put(2, 1); // The map is now [[1,1], [2,1]] (i.e., update the existing value)
std::cout << myHashMap.get(2) << endl; // return 1, The map is now [[1,1], [2,1]]
myHashMap.remove(2); // remove the mapping for 2, The map is now [[1,1]]
std::cout << myHashMap.get(2) << endl; // return -1 (i.e., not found), The map is now [[1,1]]
return 0;
}