vote up 8 vote down star
1

One of the basic data structures in Python is the dictionary, which allows one to record "keys" for looking up "values" of any type. Is this implemented internally as a hashmap? If not, what is it?

flag

72% accept rate

4 Answers

vote up 26 vote down check

Yes, it is a hash mapping or hash table. You can read a description of python's dict implementation, as written by Tim Peters, here.

That's why you can't use something 'not hashable' as a dict key, like a list:

>>> a = {}
>>> b = ['some', 'list']
>>> hash(b)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: list objects are unhashable
>>> a[b] = 'some'
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: list objects are unhashable

You can read more about hash tables or check how it has been implemented in python.

link|flag
vote up 11 vote down

If you're interested in the technical details, one article in Beautiful Code deals with the internals of Python's dict implementation.

link|flag
That was one of my favorite chapters in Beautiful Code. – DGentry Sep 22 '08 at 14:18
vote up 7 vote down

Yes. Internally it is implemented as open hashing based on a primitive polynomial over Z/2 (source).

link|flag
vote up 0 vote down

To expand upon nosklo's explanation:

a = {}
b = ['some', 'list']
a[b] = 'some' # this won't work
a[tuple(b)] = 'some' # this will, same as a['some', 'list']
link|flag

Your Answer

Get an OpenID
or

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