mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-09 20:20:56 +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
|
||||
*
|
||||
*/
|
||||
class HashMapLinearProbing {
|
||||
public class HashMapLinearProbing {
|
||||
private int hsize;
|
||||
private Integer[] buckets;
|
||||
private Integer AVAILABLE;
|
||||
@ -160,4 +160,4 @@ class HashMapLinearProbing {
|
||||
}
|
||||
return response;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user