What is the typical underlying data structure used to implement Python's built-in list data type?
|
|
|||||||||||||||||||||
|
|
|
See also: http://docs.python.org/library/collections.html#collections.deque Btw, I find it interesting that the Python tutorial on data structures recommends using pop(0) to simulate a queue but does not mention O(n) or the deque option. http://docs.python.org/tutorial/datastructures.html#using-lists-as-queues |
||||||||
|
|
|
CPython:
As can be seen on the following line, the list is declared as an array of pointers to
|
|||
|
|
|
|
In the Jython implementation, it's an |
|||
|
|
