mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-10 13:39:08 +08:00
Use public class HashMapLinearProbing
This commit is contained in:
@ -4,7 +4,7 @@ package DataStructures.HashMap.Hashing;
|
|||||||
* This class is an implementation of a hash table using linear probing
|
* This class is an implementation of a hash table using linear probing
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
class HashMapLinearProbing {
|
public class HashMapLinearProbing {
|
||||||
private int hsize;
|
private int hsize;
|
||||||
private Integer[] buckets;
|
private Integer[] buckets;
|
||||||
private Integer AVAILABLE;
|
private Integer AVAILABLE;
|
||||||
|
Reference in New Issue
Block a user