-
Notifications
You must be signed in to change notification settings - Fork 1
/
Design HashMap
54 lines (48 loc) · 1.47 KB
/
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
class MyHashMap {
/** Initialize your data structure here. */
List<List<Integer>> hashMap;
public MyHashMap() {
hashMap = new ArrayList<>();
}
/** value will always be non-negative. */
public void put(int key, int value) {
List<Integer> temp = new ArrayList<>();
temp.add(key);
temp.add(value);
boolean a = true;
for(int i = 0; i<hashMap.size(); i++){
if(hashMap.get(i).get(0).equals(temp.get(0))){
hashMap.set(i, temp);
a = false;
break;
}
}
if(a){
hashMap.add(temp);
}
}
/** 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) {
for(int i = 0; i<hashMap.size(); i++){
if(hashMap.get(i).get(0).equals(key)){
return hashMap.get(i).get(1);
}
}
return -1;
}
/** Removes the mapping of the specified value key if this map contains a mapping for the key */
public void remove(int key) {
for(int i = 0; i<hashMap.size(); i++){
if(hashMap.get(i).get(0).equals(key)){
hashMap.remove(i);
}
}
}
}
/**
* 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);
*/