vote up 6 vote down star
1

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.

flag

4 Answers

vote up 3 vote down

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.

link|flag
1  
You should probably understand how hash tables work before declaring everyone's explanations incorrect: en.wikipedia.org/wiki/Hash_table – Dustin Nov 29 '08 at 7:56
1  
The "Basic Operation" section at the top describes how that works. The locality of reference problem is addressed in the open addressing section. I'd recommend trying to write a hash table. They're pretty easy to write, and that's the easiest way to understand them. – Dustin Nov 29 '08 at 8:19
1  
What a bizarre assertion. Can you show me what line of code you're looking at? – Dustin Nov 29 '08 at 8:34
1  
I don't understand why that concerns you. Are you looking at the latest python source? Do you see line 515 of dictobject.c? These guys have put a lot of thought into it and they've written it down in a few places that are ready for you to read them. – Dustin Nov 29 '08 at 9:12
1  
@sharpsy: Yes it'll be resized, if the insert detects the dict is sufficiently (66%) full. At that point, the array is resized, all existing keys get re-inserted to new positions, and the new key gets inserted into the position for the new size. At the time of insertion, the size is a known value. – Brian Nov 29 '08 at 11:34
show 4 more comments
vote up 3 vote down

Pure Python Dictionary Implementation

For those curious about how CPython's dict implementation works, I've written a Python implementation using the same algorithms.

link|flag
vote up 2 vote down

Here's a link to the actual implementation in the python SVN repository. That should be the most definite answer.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.