forked from daveyliam/mapwriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCircularHashMap.java
194 lines (163 loc) · 4.09 KB
/
CircularHashMap.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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
package mapwriter;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
public class CircularHashMap<K, V> {
/* A hash map where each node is linked to the previous and next nodes
* in the order of insertion.
*
* The 'head' node is the most recently added node. Its next pointer
* links to the first node added, forming a circle.
*
* The getNextEntry and getPrevEntry methods use an internal pointer to
* the 'current' node, and return either the current nodes 'next' or
* 'prev' node respectively.
* The current node becomes the node that was returned, such that repeated
* calls traverse all nodes in the map.
*
* Most methods are similar to those in the java.util.Map interface.
* The CircularHashMap class does not implement Map however as some of the
* required methods seemed unnecessary.
*/
private Map<K, Node> nodeMap = new HashMap<K, Node>();
private Node headNode = null;
private Node currentNode = null;
public class Node implements Map.Entry<K, V>{
private final K key;
private V value;
private Node next;
private Node prev;
Node(K key, V value) {
this.key = key;
this.value = value;
this.next = this;
this.prev = this;
}
@Override
public K getKey() {
return this.key;
}
@Override
public V getValue() {
return this.value;
}
@Override
public V setValue(V value) {
V oldValue = this.value;
this.value = value;
return oldValue;
}
}
public V put(K key, V value) {
Node node = this.nodeMap.get(key);
if (node == null) {
// add new node
node = new Node(key, value);
this.nodeMap.put(key, node);
if (this.headNode == null) {
node.next = node;
node.prev = node;
} else {
node.next = this.headNode.next;
node.prev = this.headNode;
this.headNode.next.prev = node;
this.headNode.next = node;
}
if (this.currentNode == null) {
this.currentNode = node;
}
this.headNode = node;
} else {
// update node
node.value = value;
}
return value;
}
public V remove(Object key) {
Node node = this.nodeMap.get(key);
V value = null;
if (node != null) {
if (this.headNode == node) {
this.headNode = node.next;
if (this.headNode == node) {
this.headNode = null;
}
}
if (this.currentNode == node) {
this.currentNode = node.next;
if (this.currentNode == node) {
this.currentNode = null;
}
}
node.prev.next = node.next;
node.next.prev = node.prev;
node.next = null;
node.prev = null;
value = node.value;
this.nodeMap.remove(key);
}
return value;
}
public void clear() {
for (Node node : this.nodeMap.values()) {
node.next = null;
node.prev = null;
}
this.nodeMap.clear();
this.headNode = null;
this.currentNode = null;
}
public boolean containsKey(Object key) {
return this.nodeMap.containsKey(key);
}
public int size() {
return this.nodeMap.size();
}
public Set<K> keySet() {
return this.nodeMap.keySet();
}
public Collection<V> values() {
Collection<V> list = new ArrayList<V>();
for (Node node : this.nodeMap.values()) {
list.add(node.value);
}
return list;
}
public Collection<Map.Entry<K, V>> entrySet() {
return new ArrayList<Map.Entry<K, V>>(this.nodeMap.values());
}
public V get(Object key) {
Node node = this.nodeMap.get(key);
return (node != null) ? node.value : null;
}
public boolean isEmpty() {
return this.nodeMap.isEmpty();
}
//
// interface to traverse circular nodes
//
public Map.Entry<K, V> getNextEntry() {
if (this.currentNode != null) {
this.currentNode = this.currentNode.next;
}
return this.currentNode;
}
public Map.Entry<K, V> getPrevEntry() {
if (this.currentNode != null) {
this.currentNode = this.currentNode.prev;
}
return this.currentNode;
}
public void rewind() {
this.currentNode = (this.headNode != null) ? this.headNode.next : null;
}
public boolean setPosition(K key) {
Node node = this.nodeMap.get(key);
if (node != null) {
this.currentNode = node;
}
return (node != null);
}
}