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?
|
1
|
|
|
|
|
|
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:
You can read more about hash tables or check how it has been implemented in python. |
|||
|
|
|
|
If you're interested in the technical details, one article in Beautiful Code deals with the internals of Python's |
||
|
|
|
Yes. Internally it is implemented as open hashing based on a primitive polynomial over Z/2 (source). |
||
|
|
|
|
To expand upon nosklo's explanation:
|
||
|
|
