Python Performance Considerations
Time Complexity Notes from python.org
The following details come from Python's website.
This page documents the time-complexity (aka "Big O" or "Big Oh") of various operations in current CPython. Other Python implementations (or older or still-under development versions of CPython) may have slightly different performance characteristics. However, it is generally safe to assume that they are not slower by more than a factor of .
Generally, is the number of elements currently in the container. is either the value of a parameter or the number of elements in the parameter.
list
The Average Case assumes parameters generated uniformly at random.
Internally, a list is represented as an array; the largest costs come from growing beyond the current allocation size (because everything must move), or from inserting or deleting somewhere near the beginning (because everything after that must move). If you need to add/remove at both ends, consider using a collections.deque instead.
Operation | Average Case | Amortized Worst Case |
---|---|---|
Copy | ||
Append | ||
Pop last | ||
Pop intermediate | ||
Insert | ||
Get item | ||
Set item | ||
Delete item | ||
Iteration | ||
Get slice | ||
Del slice | ||
Set slice | ||
Extend | ||
Sort | ||
Multiply | ||
x in s | ||
min(s) , max(s) | ||
Get Length |
These operations rely on the "Amortized" part of "Amortized Worst Case". Individual actions may take surprisingly long, depending on the history of the container.
Popping the intermediate element at index k
from a list of size n
shifts all elements after k
by one slot to the left using memmove
. n - k
elements have to be moved, so the operation is . The best case is popping the second to last element, which necessitates one move, the worst case is popping the first element, which involves n - 1
moves. The average case for an average value of k
is popping the element the middle of the list, which takes operations.
collections.deque
A deque (double-ended queue) is represented internally as a doubly linked list. (Well, a list of arrays rather than objects, for greater efficiency.) Both ends are accessible, but even looking at the middle is slow, and adding to or removing from the middle is slower still.
Operation | Average Case | Amortized Worst Case |
---|---|---|
Copy | ||
append | ||
appendleft | ||
pop | ||
popleft | ||
extend | ||
extendleft | ||
rotate | ||
remove |
set
See dict -- the implementation is intentionally very similar.
Operation | Average Case | Amortized Worst Case | Notes |
---|---|---|---|
x in s | |||
Union s|t | |||
Intersection s&t | replace "min" with "max" if t is not a set | ||
Multiple intersection s1 & s2 & ... & sn | where is | ||
Difference s-t | |||
s.difference_update(t) | |||
Symmetric Difference s^t | |||
s.symmetric_difference_update(t) |
- As seen in the source code the complexities for set difference
s-t
ors.difference(t)
(set_difference()
) and in-place set differences.difference_update(t)
(set_difference_update_internal()
) are different! The first one is (for every element ins
add it to the new set, if not int
). The second one is (for every element int
remove it froms
). So care must be taken as to which is preferred, depending on which one is the longest set and whether a new set is needed. - To perform set operations like
s-t
, boths
andt
need to be sets. However you can do the method equivalents even ift
is any iterable, for examples.difference(l)
, wherel
is a list.
dict
The Average Case times listed for dict objects assume that the hash function for the objects is sufficiently robust to make collisions uncommon. The Average Case assumes the keys used in parameters are selected uniformly at random from the set of all keys.
Note that there is a fast-path for dicts that (in practice) only deal with str keys; this doesn't affect the algorithmic complexity, but it can significantly affect the constant factors: how quickly a typical program finishes.
Operation | Average Case | Amortized Worst Case |
---|---|---|
k in d | ||
Copy | ||
Get Item | ||
Set Item | ||
Delete Item | ||
Iteration |
These operations rely on the "Amortized" part of "Amortized Worst Case". Individual actions may take surprisingly long, depending on the history of the container.
For these operations, the worst case n
is the maximum size the container ever achieved, rather than just the current size. For example, if N
objects are added to a dictionary, then N-1
are deleted, the dictionary will still be sized for N
objects (at least) until another insertion is made.
Miscellaneous
list to set conversion
Iterating over a list is and adding each element to the hash set is , so the total operation is .
It is possible, albeit highly unlikely, that you could have a hash collision every time you try to insert an element into the hash table, which would result in each insertion being and thus for the entire process.
So the very worst-case complexity for converting a list into a set is . Iterating through the list will need .
- See the post on Stack Overflow about time complexity of a list to set conversion for more.