forked from super30admin/Design-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_1.java
78 lines (70 loc) · 2.12 KB
/
Problem_1.java
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
class MyHashMap {
class Node{
int key, value;
Node next;
public Node(int key, int value){
this.key = key;
this.value = value;
}
}
Node [] hashTable;
int buckets;
/** Initialize your data structure here. */
public MyHashMap() {
buckets = 10000;
hashTable = new Node[buckets];
}
private int myHashCode(int key){
return Integer.hashCode(key) % buckets;
}
private Node findNode( Node head, int key){
Node prev = head;
Node curr = head.next;
while( curr != null && curr.key != key){
prev = curr;
curr = curr.next;
}
return prev;
}
/** value will always be non-negative. */
public void put(int key, int value) {
// get the hashcode
int i = myHashCode(key);
if( hashTable[i] == null){
// setup the stating node
hashTable[i] = new Node (-1, -1);
}
Node prev = findNode( hashTable[i], key);
if( prev.next == null){
// setup new value
prev.next = new Node( key, value);
}else{
// update the value
prev.next.value = 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) {
// get hash code
int i = myHashCode(key);
if( hashTable[i] == null) return -1;
Node prev = findNode( hashTable[i], key);
if( prev.next == null) return -1;
return prev.next.value;
}
/** Removes the mapping of the specified value key if this map contains a mapping for the key */
public void remove(int key) {
int i = myHashCode(key);
if( hashTable[i] == null) return;
Node prev = findNode( hashTable[i], key);
if(prev.next == null) return;
prev.next = prev.next.next;
}
}
/**
* 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);
*/