Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder7.xlned.com!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.019 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'algorithm': 0.04; 'valueerror:': 0.09; "('b',": 0.16; '0),': 0.16; '1),': 0.16; "[('a',": 0.16; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'in-place': 0.16; 'iterable': 0.16; 'message-id:@mrabarnett.plus.com': 0.16; 'once.': 0.16; 'slow,': 0.16; 'unpack': 0.16; 'wrote:': 0.18; 'later': 0.20; 'fit': 0.20; '>>>': 0.22; 'memory': 0.22; 'example': 0.22; 'header:User-Agent:1': 0.23; 'replace': 0.24; 'looks': 0.24; 'sort': 0.25; 'second': 0.26; 'least': 0.26; 'code:': 0.26; 'header:In-Reply-To:1': 0.27; 'needed.': 0.30; 'subject:list': 0.30; 'code': 0.31; '"",': 0.31; "d'aprano": 0.31; 'produces': 0.31; 'steven': 0.31; 'file': 0.32; 'lists': 0.32; 'run': 0.32; '(most': 0.33; 'table': 0.34; 'skip:d 20': 0.34; 'problem': 0.35; 'something': 0.35; 'version': 0.36; 'wrong': 0.37; 'so,': 0.37; 'two': 0.37; 'list': 0.37; 'saves': 0.38; 'to:addr:python-list': 0.38; 'list,': 0.38; 'recent': 0.39; "couldn't": 0.39; 'to:addr:python.org': 0.39; 'first': 0.61; 'more': 0.64; 'different': 0.65; 'temporary': 0.65; 'here': 0.66; 'header:Reply-To:1': 0.67; 'results': 0.69; 'reply-to:no real name:2**0': 0.71; 'million': 0.74; 'fail.': 0.84; 'reply- to:addr:python.org': 0.84; 'on?': 0.91 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.1 cv=C6LQl2/+ c=1 sm=1 tr=0 a=0nF1XD0wxitMEM03M9B4ZQ==:117 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=0Bzu9jTXAAAA:8 a=OJn0C7AadrgA:10 a=ihvODaAuJD4A:10 a=OUOv7kDek9cA:10 a=8nJEP1OIZ-IA:10 a=EBOSESyhAAAA:8 a=8AHkEIZyAAAA:8 a=iG_8WwV8i_QA:10 a=5PxMT0KwcJksc1a57RcA:9 a=wPNLvfGTeEIA:10 X-AUTH: mrabarnett:2500 Date: Thu, 12 Dec 2013 00:59:42 +0000 From: MRAB User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Thunderbird/24.1.1 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Optimizing list processing References: <52a8fb2d$0$29992$c3e8da3$5496439d@news.astraweb.com> In-Reply-To: <52a8fb2d$0$29992$c3e8da3$5496439d@news.astraweb.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: python-list@python.org List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 56 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1386809980 news.xs4all.nl 2914 [2001:888:2000:d::a6]:45723 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:61632 On 11/12/2013 23:54, Steven D'Aprano wrote: > I have some code which produces a list from an iterable using at least > one temporary list, using a Decorate-Sort-Undecorate idiom. The algorithm > looks something like this (simplified): > > table = sorted([(x, i) for i,x in enumerate(iterable)]) > table = [i for x,i in table] > > The problem here is that for large iterables, say 10 million items or so, > this is *painfully* slow, as my system has to page memory like mad to fit > two large lists into memory at once. So I came up with an in-place > version that saves (approximately) two-thirds of the memory needed. > > table = [(x, i) for i,x in enumerate(iterable)] > table.sort() This looks wrong to me: > for x, i in table: > table[i] = x Couldn't it replace an item it'll need later on? Let me see if I can find an example where it would fail. Start with: >>> table = [('b', 0), ('a', 1)] Sort it and you get: >>> table.sort() >>> table [('a', 1), ('b', 0)] Run that code: >>> for x, i in table: table[i] = x Traceback (most recent call last): File "", line 1, in for x, i in table: ValueError: need more than 1 value to unpack Why did it fail? >>> table [('a', 1), 'a'] The 2 methods give different results anyway: the first returns a list of indexes, and the second returns a list of items from the iterable. [snip]