Use public class HashMapLinearProbing

This commit is contained in:
Ray S
2020-08-02 09:17:16 -04:00
committed by GitHub
parent 84f5038996
commit f729092e8a

View File

@ -4,7 +4,7 @@ package DataStructures.HashMap.Hashing;
* This class is an implementation of a hash table using linear probing
*
*/
class HashMapLinearProbing {
public class HashMapLinearProbing {
private int hsize;
private Integer[] buckets;
private Integer AVAILABLE;
@ -160,4 +160,4 @@ class HashMapLinearProbing {
}
return response;
}
}
}