-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHashTable.java
73 lines (57 loc) · 1.21 KB
/
HashTable.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
package org.sadnatau.relc.data;
import java.util.Hashtable;
import java.util.Map;
import java.util.Set;
/**
*
* An implementation of a hash table key-value associative map data structure.
*
* @author Yevgeny Levanzov & Daniel Samuelov
*
*/
public class HashTable<K,V> implements KeyValueDataStructure<K,V> {
private Hashtable<K,V> htable;
public HashTable() {
this.htable = new Hashtable<>();
}
@Override
public int size() {
return this.htable.size();
}
@Override
public boolean isEmpty() {
return this.htable.isEmpty();
}
@Override
public boolean containsKey(K key) {
return this.htable.containsKey(key);
}
@Override
public V get(K key) {
return this.htable.get(key);
}
@Override
public void put(K key, V value) {
this.htable.put(key, value);
}
@Override
public Set<K> keySet() {
return this.htable.keySet();
}
@Override
public void remove(K key) {
this.htable.remove(key);
}
@Override
public String toString() {
String s = "[";
for (Map.Entry<K,V> se : htable.entrySet()) {
s = s + "-- " + se.getKey() + " --> " + se.getValue() + ", ";
}
if (s.length() >= 2) {
s = s.substring(0, s.length()-2);
}
s = s+ "]";
return s;
}
}