Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #54915

walking a heapq nondestructively without duplicating?

Date 2013-09-27 17:22 -0500
From Tim Chase <python.list@tim.thechases.com>
Subject walking a heapq nondestructively without duplicating?
Newsgroups comp.lang.python
Message-ID <mailman.395.1380320435.18130.python-list@python.org> (permalink)

Show all headers | View raw


I've got a large heapq'ified list and want to walk it in-order
without altering it.  I get the "unsorted" heap'ish results if I just
do

  from heapq import heappush, heappop, nlargest, nsmallest
  my_heap = []
  for thing in lots_of_items():
    heappush(thing)
  for item in my_heap:
    ...

To get them in-order, I can do something like

  while my_heap:
    item = heappop(my_heap)
    do_something(item)

to iterate over the items in order, but that destroys the original
heap. I can also do

  for item in nlargest(len(my_heap), my_heap): # or nsmallest()
    do_something(item)

but this duplicates a potentially large list according to my
reading of the description for nlargest/nsmallest[1].  Is there a
handy way to non-destructively walk the heap (either in-order or
reversed) without duplicating its contents?

-tkc

[1] http://docs.python.org/2/library/heapq.html#heapq.nlargest






Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

walking a heapq nondestructively without duplicating? Tim Chase <python.list@tim.thechases.com> - 2013-09-27 17:22 -0500

csiph-web