I have just found these performance notes for cPython lists:
Time needed for python lists to ....
- ... get or set an individual item: O(1)
- ... append an item to the list: worst O(n^2), but usually O(1)
- ... insert an item: O(n), where n is the number of elements after the inserted one
- ... remove an item: O(n)
Now I would like to know the same performance characteristics for cPython sets. Also, I would like how fast iteration over the list / set is. I am especially interested in large lists / sets.
nitems, you wouldn't getO(n*2)complexity unless the array always allocated exactly the amount of memory it needs. – André Caron Mar 6 '11 at 23:33