How to walk up a linked-list using a list comprehension? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T12:28:10Z http://stackoverflow.com/feeds/question/1020037 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1020037/how-to-walk-up-a-linked-list-using-a-list-comprehension 0 How to walk up a linked-list using a list comprehension? Richard Levasseur 2009-06-19T21:12:29Z 2009-06-20T00:55:55Z <p>I've been trying to think of a way to traverse a hierarchical structure, like a linked list, using a list expression, but haven't come up with anything that seems to work.</p> <p>Basically, I want to convert this code:</p> <pre><code>p = self.parent names = [] while p: names.append(p.name) p = p.parent print ".".join(names) </code></pre> <p>into a one-liner like:</p> <pre><code>print ".".join( [o.name for o in &lt;???&gt;] ) </code></pre> <p>I'm not sure how to do the traversal in the <code>???</code> part, though, <em>in a generic way</em> (if its even possible). I have several structures with similar <code>.parent</code> type attributes, and don't want to have write a yielding function for each.</p> <p>Edit:</p> <p>I can't use the <code>__iter__</code> methods of the object itself because its already used for iterating over the values contained within the object itself. Most other answers, except for liori's, hardcode the attribute name, which is what I want to avoid.</p> <p>Here's my adaptation based upon liori's answer:</p> <pre><code>import operator def walk(attr, start): if callable(attr): getter = attr else: getter = operator.attrgetter(attr) o = getter(start) while o: yield o o = getter(o) </code></pre> http://stackoverflow.com/questions/1020037/how-to-walk-up-a-linked-list-using-a-list-comprehension/1020055#1020055 1 Answer by kgiannakakis for How to walk up a linked-list using a list comprehension? kgiannakakis 2009-06-19T21:17:15Z 2009-06-19T21:17:15Z <p>List comprehension works with objects that are iterators (have the next() method). You need to define an iterator for your structure in order to be able to iterate it this way.</p> http://stackoverflow.com/questions/1020037/how-to-walk-up-a-linked-list-using-a-list-comprehension/1020059#1020059 6 Answer by Triptych for How to walk up a linked-list using a list comprehension? Triptych 2009-06-19T21:18:08Z 2009-06-19T21:18:08Z <p>The closest thing I can think of is to create a parent generator:</p> <pre><code># Generate a node's parents, heading towards ancestors def gen_parents(node): node = node.parent while node: yield node node = node.parent # Now you can do this parents = [x.name for x in gen_parents(node)] print '.'.join(parents) </code></pre> http://stackoverflow.com/questions/1020037/how-to-walk-up-a-linked-list-using-a-list-comprehension/1020394#1020394 1 Answer by Evan Fosmark for How to walk up a linked-list using a list comprehension? Evan Fosmark 2009-06-19T22:57:35Z 2009-06-19T22:57:35Z <p>Your LinkedList needs to be iterable for it to work properly. </p> <p><a href="http://heather.cs.ucdavis.edu/~matloff/Python/PyIterGen.pdf" rel="nofollow">Here's a good resource on it. (PDF warning)</a> It is very in depth on both iterators and generators.</p> <p>Once you do that, you'll be able to just do this:</p> <pre><code>print ".".join( [o.name for o in self] ) </code></pre> http://stackoverflow.com/questions/1020037/how-to-walk-up-a-linked-list-using-a-list-comprehension/1020488#1020488 2 Answer by liori for How to walk up a linked-list using a list comprehension? liori 2009-06-19T23:38:10Z 2009-06-19T23:38:10Z <p>If you want your solution to be general, use a general techique. This is a fixed-point like generator:</p> <pre><code>def fixedpoint(f, start, stop): while start != stop: yield start start = f(start) </code></pre> <p>It will return a generator yielding start, f(start), f(f(start)), f(f(f(start))), ..., as long as neither of these values are equal to stop.</p> <p>Usage:</p> <pre><code>print ".".join(x.name for x in fixedpoint(lambda p:p.parent, self, None)) </code></pre> <p>My personal helpers library has similar fixedpoint-like function for years... it is pretty useful for quick hacks.</p>