-
Notifications
You must be signed in to change notification settings - Fork 562
/
Copy pathChainedHashtable.java
82 lines (72 loc) · 2.5 KB
/
ChainedHashtable.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
import java.util.LinkedList;
import java.util.ListIterator;
public class ChainedHashtable {
private LinkedList<StoredEmployee>[] hashtable;
public ChainedHashtable() {
hashtable = new LinkedList[10];
for (int i = 0; i < hashtable.length; i++) {
hashtable[i] = new LinkedList<StoredEmployee>();
}
}
public void put(String key, Employee employee) {
int hashedKey = hashKey(key);
hashtable[hashedKey].add(new StoredEmployee(key, employee));
}
public Employee get(String key) {
int hashedKey = hashKey(key);
ListIterator<StoredEmployee> iterator = hashtable[hashedKey].listIterator();
StoredEmployee employee = null;
while (iterator.hasNext()) {
employee = iterator.next();
if(employee.key.equals(key)) {
return employee.employee;
}
}
return null;
}
public Employee remove(String key) {
int hashedKey = hashKey(key);
ListIterator<StoredEmployee> iterator = hashtable[hashedKey].listIterator();
StoredEmployee employee = null;
int index = -1;
while (iterator.hasNext()) {
employee = iterator.next();
index++;
if(employee.key.equals(key)) {
break;
}
}
// another way of implementing
// if(employee != null && employee.key.equals(key)) {
// hashtable[hashedKey].remove(employee);
// return employee.employee;
// } else {
// return null;
// }
if(employee == null || !employee.key.equals(key)) {
return null;
} else {
hashtable[hashedKey].remove(index);
return employee.employee;
}
}
private int hashKey(String key) {
//return key.length() % hashtable.length;
return Math.abs(key.hashCode() % hashtable.length);
}
public void printHashtable() {
for (int i = 0; i < hashtable.length; i++) {
if(hashtable[i].isEmpty()) {
System.out.println("Position " + i + ": empty");
} else {
System.out.print("Position " + i + ": ");
ListIterator<StoredEmployee> iterator = hashtable[i].listIterator();
while (iterator.hasNext()) {
System.out.print(iterator.next().employee);
System.out.print("->");
}
System.out.println("null");
}
}
}
}