The lesson here was our introduction to understanding the inner workings of data structures. Specifically, arrays and hashes.
The cool thing I learned is that hashes are full of secrets.
Specifically, Hashes are secretly Arrays, but disguised by their curly brackets. The cool way Hashes disguise themselves as paired values in no particular order is through nested Arrays and a .hash
method which does some secret math. As you might be able to tell from my drawing (click on it to make it bigger), a Hash is just an Array. But it is a fancy Array! The size of the Array is defined ahead of time (by the Ruby computer-brain), and each spot in the array is set to nil
. Then, when we add a key => value
pair to the Array, some magic happens.
- The Ruby computer-brain runs
.hash
on the key. This generates a pretty large and (mostly) unique number. - However, the Ruby computer-brain don’t actually want (or need) a gigantic Array with hundreds of thousands of places filled with
nil
values, so it uses the modulo (or remainder)%
to make it smaller. Specifically, it divides the giant hash number by the number of spots in the Array. - The modulo gives the Ruby computer-brain the remainder of that division operation, which by definition, has to fit inside the array.
- Since it was generated by a (mostly) unique and very large number, the remainder will also be (mostly) unique, so the Ruby computer-brain uses it as the index position in the array to store our new key and value.
- The key and value are set as positions [0] and [1] in an array which is nested inside the Hash-Array at the index position calculated via the
.hash
and modulo operations.
So this is why Hash lookups are so fast! The Ruby computer-brain ‘knows’ where each key and value are because it can take the requested key, do the math for the .hash
method really quick (because computers are really good at doing math quickly), calculate the index position with the modulo operation, and BAM! Find your value!