The topic title pretty much says it all. 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.
|
1
|
|
|
|
|
|
It is Open hashing based on a primitive polynomial over Z/2. Please refer Beautiful Code By Andy Oram, Greg Wilson. There is an excellent chapter titled "Python's Dictionary Implementation Being All Things to All People" by Andrew Kuchling. |
||
|
|
|
|
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. |
||||||||||||||||||||
|
|
|
Pure Python Dictionary Implementation
|
||
|
|
|
|
Here's a link to the actual implementation in the python SVN repository. That should be the most definite answer. |
||
|
|
