Starting to explore such a phenomenon as a hash-table, I realized that this is a kind of array, each cell of which stores a list that is parameterized by two types: a key and a value .
When I got into the HashMap source, I saw the following:
transient Node<K,V>[] table; If I understood everything correctly, and this is a hash table, then why is it a one-dimensional array? Or did I find something wrong, and this is not it?
