-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHashTableWithOpenAddressing.java
More file actions
267 lines (231 loc) · 5.42 KB
/
Copy pathHashTableWithOpenAddressing.java
File metadata and controls
267 lines (231 loc) · 5.42 KB
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.Scanner;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* File: HashTableWithOpenAddressing.java
* Date: May 01, 2018
* Author: Kitsao Emmanuel
* Purpose: Implement Open Addressing to store hashed data.
* Uses as keys the last names in the patient.txt
* =======================================================================================
*/
public class HashTableWithOpenAddressing<P> {
private Entry<P> tbl[];
private int size = 25;
private int elements = 0;
public HashTableWithOpenAddressing() {
tbl = new Entry[size];
}
private class Entry<P> {
private P key;
private boolean exists;
public Entry(P eKey) {
key = eKey;
exists = true;
}
// getter function to return key
public P getKey() {
return key;
}
// setter function to set key
public void setKey(P key) {
this.key = key;
}
// boolean function to check if entry exists
public boolean isExists() {
return exists;
}
// affirm and set to true if entry exists
public void setExists(boolean exists) {
this.exists = exists;
}
// prepare to remove element
public void prepDelete() {
exists = false;
}
}
/**
* insert method.
*
* insert an element to the hash table.
*
* @param int key
* Integer key.
* @param int i
* elements.
* @return void
*/
public void insert(P key) throws Exception {
if (key == null) { // key cannot be null
throw new Exception("Key cannot be null");
}
int index = search(key, true);
tbl[index] = new Entry(key);
elements++;
if (elements == size / 2) { // rehash if half full
rehash();
}
}
// hash function
public int hash(P key) {
int code = key.hashCode();
return code % size;
}
/**
* Search method.
*
* Search an element in hash table.
*
*/
private int search(P key, boolean empty) throws Exception {
int initialPoint = hash(key);
int index = initialPoint;
while (true) {
try {
if (tbl[index].key == key && empty == false) {
return index;
}
} catch (Exception e) {
if (empty) {
return index;
}
}
index = (index + 1) % size;
if (index == initialPoint) {
throw new Exception("Element not found");
}
}
}
/**
* Remove method.
*
* Remove an element from the hash table.
*/
public boolean remove(P key) throws Exception {
if (key == null) { // key cannot be null
throw new Exception("Key cannot be null");
}
try {
int index = search(key, false);
tbl[index].prepDelete(); // marks entry for deletion
return true;
} catch (Exception e) {
return false;
}
}
/**
* Delete method.
*
* Delete an element from the hash table.
*/
private void delete() {
for (int i = 0; i < tbl.length; i++) {
try {
if (tbl[i].exists == false) {
tbl[i] = null;
}
} catch (Exception e) {
}
}
}
// Function to redo hashing
private void rehash() throws Exception {
delete();
Entry<P> temp[];
temp = new Entry[size];
for (int i = 0; i < size; i++) { // copy all elements to temp
if (tbl[i] != null) {
temp[i] = tbl[i];
}
}
size = size * 2;
elements = 0;
tbl = new Entry[size];
for (int i = 0; i < size / 2; i++) {
Entry<P> entry = temp[i];
if (entry != null) {
insert(entry.key);
}
}
}
// Function to display the hash table
public void display() {
System.out.println("\nHash Table");
System.out.println("Table Size : " + size);
System.out.println("Index\t\tName\t\tStatus");
for (int i = 0; i < size; i++) {
Entry<P> e = tbl[i];
if (e == null) {
System.out.println(i + " empty");
} else {
String status;
if (e.isExists() == true) {
status = "Found";
} else {
status = "Candidate for deletion";
}
System.out.println(i + "\t\t" + e.key + "\t\t" + status);
}
}
}
// simple user interface for interaction
public void menu() // user menu
{
boolean proceed = true;
Scanner in = new Scanner(System.in);
while (proceed) { // user choice/entry
System.out.println("_________________________________________________________________________");
System.out.println("\nOpen Addressing to store hashed data");
System.out.println("_________________________________________________________________________");
System.out.println("Pick an option: \t (d) display table \t (r) rehash \t (q) quit ");
String command = in.next();
char chr = command.charAt(0);
switch (chr) {
case 'd': {
display();
break;
}
case 'r': {
try {
rehash();
} catch (Exception ex) {
Logger.getLogger(HashTableWithOpenAddressing.class.getName()).log(Level.SEVERE, null, ex);
}
break;
}
case 'q': {
proceed = false;
System.out.println("Thanks for stopping by!");
break;
}
default: {
System.out.println("Invalid entry. Please try again");
}
}
}
in.close();
}
public static void main(String[] args) throws IOException {
HashTableWithOpenAddressing<String> tbl = new HashTableWithOpenAddressing<>();
String inputFile = "patient.txt";
BufferedReader br = new BufferedReader(new FileReader(inputFile));
try {
String entry = br.readLine();
while (entry != null) {
String[] splited = entry.split(",");
String lastName = splited[0];
try {
tbl.insert(lastName);
} catch (Exception e) {
}
entry = br.readLine();
}
} finally {
br.close();
}
tbl.menu();
}
}