A HashMap stores data into multiple singly linked lists of entries (also called buckets or bins) . … All the keys with the same hash value are put in the same linked list (bucket). Keys with different hash values can end-up in the same bucket.
Read more