What is the runtime complexity of python list functions? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T20:11:38Zhttp://stackoverflow.com/feeds/question/1005590http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1005590/what-is-the-runtime-complexity-of-python-list-functions2What is the runtime complexity of python list functions?Marquis Wang2009-06-17T07:28:54Z2009-06-17T08:49:57Z
<p>I was writing a python function that looked something like this</p>
<pre><code>def foo(some_list):
for i in range(0, len(some_list)):
bar(some_list[i], i)
</code></pre>
<p>so that it was called with</p>
<pre><code>x = [0, 1, 2, 3, ... ]
foo(x)
</code></pre>
<p>I had assumed that index access of lists was <code>O(1)</code>, but was surprised to find that for large lists this was significantly slower than I expected.</p>
<p>My question, then, is how are python lists are implemented, and what is the runtime complexity of the following</p>
<ul>
<li>Indexing: <code>list[x]</code></li>
<li>Popping from the end: <code>list.pop()</code></li>
<li>Popping from the beginning: <code>list.pop(0)</code></li>
<li>Extending the list: <code>list.append(x)</code></li>
</ul>
<p>For extra credit, splicing or arbitrary pops.</p>
http://stackoverflow.com/questions/1005590/what-is-the-runtime-complexity-of-python-list-functions/1005616#10056164Answer by anthony for What is the runtime complexity of python list functions?anthony2009-06-17T07:37:59Z2009-06-17T07:37:59Z<p>The answer is "undefined". The Python language doesn't define the underlying implementation. Here are some links to a mailing list thread you might be interested in.</p>
<ul>
<li><p><a href="http://mail.python.org/pipermail/python-list/2003-April/199506.html" rel="nofollow">It is true that Python's lists have
been implemented as contiguous
vectors in the C implementations of
Python so far.</a></p></li>
<li><p><a href="http://mail.python.org/pipermail/python-list/2003-April/199585.html" rel="nofollow">I'm not saying that the O()
behaviours of these things should be
kept a secret or anything. But you
need to interpret them in the context
of how Python works generally.</a></p></li>
</ul>
<p>Also, the more Pythonic way of writing your loop would be this:</p>
<pre><code>def foo(some_list):
for item in some_list:
bar(item)
</code></pre>
http://stackoverflow.com/questions/1005590/what-is-the-runtime-complexity-of-python-list-functions/1005662#10056622Answer by Maxim Kim for What is the runtime complexity of python list functions?Maxim Kim2009-06-17T07:53:01Z2009-06-17T07:53:01Z<p>Can't comment yet, so</p>
<p>if you need index and value then use enumerate:</p>
<pre><code>for idx, item in enumerate(range(10, 100, 10)):
print idx, item
</code></pre>
http://stackoverflow.com/questions/1005590/what-is-the-runtime-complexity-of-python-list-functions/1005674#10056745Answer by SilentGhost for What is the runtime complexity of python list functions?SilentGhost2009-06-17T07:57:35Z2009-06-17T07:57:35Z<p>there is <a href="http://wiki.python.org/moin/TimeComplexity" rel="nofollow">a very detailed table on python wiki</a> which answers your question.</p>
<p>However, in your particular example you should use <code>enumerate</code> to get an index of an iterable within a loop. like so:</p>
<pre><code>for i, item in enumerate(some_seq):
bar(item, i)
</code></pre>
http://stackoverflow.com/questions/1005590/what-is-the-runtime-complexity-of-python-list-functions/1005888#10058882Answer by Brian for What is the runtime complexity of python list functions?Brian2009-06-17T08:49:57Z2009-06-17T08:49:57Z<p>Lists are indeed O(1) to index - they are implemented as a vector with proportional overallocation, so perform much as you'd expect. The likely reason you were finding this code slower than you expected is the call to "<code>range(0, len(some_list))</code>".</p>
<p><code>range()</code> creates a new list of the specified size, so if some_list has 1,000,000 items, you will create a new million item list up front. This behaviour changes in python3 (range is an iterator), to which the python2 equivalent is <a href="http://docs.python.org/library/functions.html#xrange" rel="nofollow">xrange</a>, or even better for your case, <a href="http://docs.python.org/library/functions.html#enumerate" rel="nofollow">enumerate</a></p>