We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84f5038 commit f729092Copy full SHA for f729092
1 file changed
DataStructures/HashMap/Hashing/HashMapLinearProbing.java
@@ -4,7 +4,7 @@
4
* This class is an implementation of a hash table using linear probing
5
*
6
*/
7
-class HashMapLinearProbing {
+public class HashMapLinearProbing {
8
private int hsize;
9
private Integer[] buckets;
10
private Integer AVAILABLE;
@@ -160,4 +160,4 @@ public boolean isEmpty() {
160
}
161
return response;
162
163
-}
+}
0 commit comments