As the title states, how expensive are Python dictionaries to handle? Creation, insertion, updating, deletion, all of it.
Asymptotic time complexities are interesting themselves, but also how they compare to e.g. tuples or normal lists.
|
3
|
As the title states, how expensive are Python dictionaries to handle? Creation, insertion, updating, deletion, all of it. Asymptotic time complexities are interesting themselves, but also how they compare to e.g. tuples or normal lists.
|
|||
|
|
|
For tiny containers, you can easily check the boundaries with
this shows that checking membership in empty lists or tuples is faster, by a whopping 20-30 nanoseconds, than checking membership in empty sets or dicts; when every nanosecond matters, this info might be relevant to you. Moving up a bit...:
you see that for 7-items containers (not including the one of interest) the balance of performance has shifted, and now dicts and sets have the advantages by HUNDREDS of nanoseconds. When the item of interest IS present:
dicts and sets don't gain much, but tuples and list do, even though dicts and set remain vastly faster. And so on, and so forth -- |
||
|
|
|
|
Dictionaries are one of the more heavily tuned parts of Python, since they underlie so much of the language. For example, members of a class, and variables in a stack frame are both stored internally in dictionaries. They will be a good choice if they are the right data structure. Choosing between lists and dicts based on performance seems odd: they do different things. Maybe you can tell us more about the problem you are trying to solve. |
||||||||||||||
|