Skip to content

Commit f729092

Browse files
authored
Use public class HashMapLinearProbing
1 parent 84f5038 commit f729092

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DataStructures/HashMap/Hashing/HashMapLinearProbing.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This class is an implementation of a hash table using linear probing
55
*
66
*/
7-
class HashMapLinearProbing {
7+
public class HashMapLinearProbing {
88
private int hsize;
99
private Integer[] buckets;
1010
private Integer AVAILABLE;
@@ -160,4 +160,4 @@ public boolean isEmpty() {
160160
}
161161
return response;
162162
}
163-
}
163+
}

0 commit comments

Comments
 (0)