vote up 3 vote down star

Based on this older thread, it looks like the cost of list functions in Python is:

  • Random access: O(1)
  • Insertion/deletion to front: O(n)
  • Insertion/deletion to back: O(1)

Can anyone confirm whether this is still true in Python 2.6/3.x?

flag

4 Answers

vote up 4 vote down check

Take a look here. It's a PEP for a different kind of list. The version specified is 2.6/3.0.

Append (insertion to back) is O(1), while insertion (everywhere else) is O(n). So yes, it looks like this is still true.

Operation...Complexity
Copy........O(n) 
Append......O(1)
Insert......O(n) 
Get Item....O(1)
Set Item....O(1)
Del Item....O(n) 
Iteration...O(n)
Get Slice...O(k)
Del Slice...O(n)
Set Slice...O(n+k)
Extend......O(k) 
Sort........O(n log n)
Multiply....O(nk)
link|flag
Thanks Ryeguy—appreciate it. Also from the TimeComplexity doc referenced by kaizer.se: x in s........... O(n) min(s), max(x)... O(n) – Dan Oct 5 at 21:37
vote up 1 vote down

That's correct, inserting in front forces a move of all the elements to make place.

collections.deque offers similar functionality, but is optimized for insertion on both sides.

link|flag
vote up 1 vote down

Python 3 is mostly an evolutionary change, no big changes in the datastructures and their complexities.

The canonical source for Python collections is TimeComplexity on the Wiki.

link|flag
Great resource—thanks, Kaizer.se – Dan Oct 5 at 21:38
vote up 0 vote down

Fwiw, there is a faster (for some ops... insert is O(log n)) list implementation called BList if you need it. BList

link|flag

Your Answer

Get an OpenID
or

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