Does anyone know how the built in dictionary type for python is implemented? My understanding is that it is some sort of hash table, but I haven't been able to find any sort of definitive answer.
|
|
Python Dictionaries use Open addressing (reference inside Beautiful code) NB! Open addressing, a.k.a closed hashing should, as noted in Wikipedia, not be confused with its opposite open hashing! (which we see in the accepted answer). Open addressing means that the dict uses array slots, and when an object's primary position is taken in the dict, the object's spot is sought at a different index in the same array, using a "perturbation" scheme, where the object's hash value plays part. |
|||
|
|
|
Here is everything about Python dicts that I was able to put together (probably more than anyone would like to know; but the answer is comprehensive).
NOTE: I did the research on Python Dict implementation in response to my own question about how multiple entries in a dict can have same hash values. I posted a slightly edited version of the response here because all the research is very relevant for this question as well. |
|||
|
|
|
Here's a link to the actual implementation in the python SVN repository. That should be the most definite answer. |
|||||
|
|
At PyCon 2010, Brandon Craig Rhodes gave an excellent talk about the Python dictionary. It provides a great overview of the dictionary implementation with examples and visuals. If you have 45 minutes (or even just 15), I would recommend watching the talk before proceeding to the actual implementation. |
|||
|
|
|
Pure Python Dictionary Implementation
|
|||
|
|
|
It is a hash table. You can read about it some in the python wiki. Otherwise, the code is well-written and should be easy to understand. |
|||||||||||||||||||||
|