mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-14 01:16:07 +08:00
use public class HashMap
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
package DataStructures.HashMap.Hashing;
|
package DataStructures.HashMap.Hashing;
|
||||||
|
|
||||||
class HashMap {
|
public class HashMap {
|
||||||
private int hsize;
|
private int hsize;
|
||||||
private LinkedList[] buckets;
|
private LinkedList[] buckets;
|
||||||
|
|
||||||
@ -145,4 +145,4 @@ class HashMap {
|
|||||||
this.next = next;
|
this.next = next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user