What's a good way to rewrite this non-tail-recursive function? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T12:54:41Z http://stackoverflow.com/feeds/question/315507 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/315507/whats-a-good-way-to-rewrite-this-non-tail-recursive-function 7 What's a good way to rewrite this non-tail-recursive function? Steven Huwig 2008-11-24T21:19:10Z 2009-05-20T10:52:22Z <p>For some reason, I am having trouble thinking of a good way to rewrite this function so it uses constant stack space. Most online discussions of tree recursion cheat by using the Fibonacci function and exploiting the properties of that particular problem. Does anyone have any ideas for this "real-world" (well, more real-world than the Fibonacci series) use of recursion?</p> <p><a href="http://clojure.org" rel="nofollow">Clojure</a> is an interesting case since it does not have tail-call optimization, but only tail recursion via the "recur" special form. It also strongly discourages the use of mutable state. It does have many lazy constructs including <a href="http://clojure.org/api#toc489" rel="nofollow">tree-seq</a>, but I am not able to see how they can help me for this case. Can anyone share some techniques they have picked up from C, Scheme, Haskell, or other programming languages?</p> <pre><code>(defn flatten [x] (let [type (:type x)] (cond (or (= type :NIL) (= type :TEXT)) x (= type :CONCAT) (doc-concat (flatten (:doc1 x)) (flatten (:doc2 x))) (= type :NEST) (doc-nest (:level x) (flatten (:doc x))) (= type :LINE) (doc-text " ") (= type :UNION) (recur (:doc1 x))))) </code></pre> <p>edit: By request in the comments...</p> <p>Restated in general terms and using Scheme -- how do I rewrite the following recursion pattern so it doesn't consume stack space or require tail-call optimization of non-self-calls?</p> <pre><code>(define (frob x) (cond ((foo? x) x) ((bar? x) (macerate (f x) (frob (g x)))) ((thud? x) (frobnicate (frob (g x)) (frob (h x)))))) </code></pre> <p>I chose annoying names to drive home the point that I am looking for answers that don't rely on the algebraic properties of x, macerate, frobnicate, f, g, or h. I just want to rewrite the recursion.</p> <p><strong>UPDATE</strong>:</p> <p>Rich Hickey has kindly added an explicit <a href="http://lambda-the-ultimate.org/node/3106" rel="nofollow">trampoline function</a> to Clojure.</p> http://stackoverflow.com/questions/315507/whats-a-good-way-to-rewrite-this-non-tail-recursive-function/315694#315694 3 Answer by Javier for What's a good way to rewrite this non-tail-recursive function? Javier 2008-11-24T22:10:51Z 2008-11-24T22:10:51Z <p>The main hurdle to easily transforming your algorithm is that it doesn't result in a sequence of calls to the same function; but alternates between a few ones, each operating on the result of the other.</p> <p>i'd say you have three alternatives:</p> <ol> <li>totally reformulate the algorithm (that's what the Fibonacci examples do).</li> <li>combine all functions into a single one with lots of cond's (ugly, and maybe won't result in a real tail-recursion, even with a single function).</li> <li>turn the flow inside-out: write a single, simple tail-recursive function that transforms the input data into the sequence of operations that have to be performed, and then eval it.</li> </ol> http://stackoverflow.com/questions/315507/whats-a-good-way-to-rewrite-this-non-tail-recursive-function/315784#315784 1 Answer by Mike Dunlavey for What's a good way to rewrite this non-tail-recursive function? Mike Dunlavey 2008-11-24T22:53:18Z 2008-11-24T22:53:18Z <p>If flatten calls itself twice (in the :CONCAT case) how can it be turned into a loop? Maybe I'm missing something. Seems it's inherently a tree-walk.</p> <p>I mean, there are ways to do a tree-walk without stack, but something has to be unbounded, like if you do it with a FIFO, or as was suggested, with continuations.</p> http://stackoverflow.com/questions/315507/whats-a-good-way-to-rewrite-this-non-tail-recursive-function/315875#315875 1 Answer by Chris Conway for What's a good way to rewrite this non-tail-recursive function? Chris Conway 2008-11-24T23:29:31Z 2008-11-25T01:21:05Z <p>You could use continuation-passing:</p> <pre><code>(define (frob0 x k) (cond ((foo? x) (k x)) ((bar? x) (frob0 (g x) (lambda (y) (k (macerate (f x) y)))) ((thud? x) (frob0 (g x) (lambda (y) (frob0 (h x) (lambda (z) (k (frobnicate y z)))))))) (define (frob x) (frob0 x (lambda (y) y)) </code></pre> <p>This will not make things easier to understand :-(</p> http://stackoverflow.com/questions/315507/whats-a-good-way-to-rewrite-this-non-tail-recursive-function/315943#315943 0 Answer by Claudiu for What's a good way to rewrite this non-tail-recursive function? Claudiu 2008-11-25T00:06:50Z 2008-11-25T00:06:50Z <p>The best I can come up with is something like this:</p> <pre><code>(define (doaction vars action) (cond ((symbol=? action 'frob) (cond ((foo? (first vars)) (first vars)) ((bar? (first vars)) (doaction (list (f (first vars)) (doaction (g x) 'frob)) 'macerate) etc... </code></pre> <p>It's not fully tail recursive, but likely the best you can get. TCO is really the way to go. (I understand that Clojure can't have it due to the JVM). </p> http://stackoverflow.com/questions/315507/whats-a-good-way-to-rewrite-this-non-tail-recursive-function/315994#315994 4 Answer by Mike Dunlavey for What's a good way to rewrite this non-tail-recursive function? Mike Dunlavey 2008-11-25T00:32:43Z 2008-11-26T17:33:59Z <p>Please don't downvote this because it's ugly. I know it's ugly. But it's a way to do it in trampoline-style (no system stack overflow), and without using gotos.</p> <pre><code>push x,1 on homemade stack while stack length &gt; 1 n = pop if (n==1) x = pop if (type(x)==NIL || type(x)==TEXT) push x // this is the "return value" else if (type(x)==CONCAT) push 2 // say call doc-concat push doc2(x), 1 // 2nd recursion push doc1(x), 1 // 1st recursion else if (type(x)==NEST) push 3 // say call doc-nest push level(x) // push level argument to doc-nest push doc(x), 1 // schedule recursion else if (type(x)==LINE) push " " // return a blank else if (type(x)==UNION) push doc1(x), 1 // just recur else if (n==2) push doc-concat(pop, pop) // finish the CONCAT case else if (n==3) push doc-nest(pop, pop) // finish the NEST case endif endwhile // final value is the only value on the stack </code></pre> http://stackoverflow.com/questions/315507/whats-a-good-way-to-rewrite-this-non-tail-recursive-function/315998#315998 1 Answer by Darius Bacon for What's a good way to rewrite this non-tail-recursive function? Darius Bacon 2008-11-25T00:34:26Z 2008-11-25T00:34:26Z <p>The standard general technique is conversion to <a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.32.6328" rel="nofollow">trampolined style</a>. For your particular problem (implementing prettyprinting combinators) you might find helpful Derek Oppen's 1980 paper "Prettyprinting" (not on the web AFAIK). It presents a stack-based imperative algorithm similar to Wadler's later functional one.</p> http://stackoverflow.com/questions/315507/whats-a-good-way-to-rewrite-this-non-tail-recursive-function/319369#319369 0 Answer by comingstorm for What's a good way to rewrite this non-tail-recursive function? comingstorm 2008-11-26T00:32:06Z 2008-11-26T00:44:25Z <p>The following is not a specific answer to your question, but hopefully it will be a useful example. It replaces multiple recursions (which would otherwise require an unbounded call stack) with a stack of tasks.</p> <p>(in Haskellish code): <code><pre> data Tree = Null | Node Tree Val Tree</p> <p>-- original, non-tail-recursive function: flatten :: Tree -> Result flatten Null = nullval flatten (Node a v b) = nodefunc (flatten a) v (flatten b)</p> <p>-- modified, tail-recursive code: data Task = A Val Tree | B Result Val</p> <p>eval :: Tree -> [Task] -> Result use :: Result -> [Task] -> Result</p> <p>eval Null tasks = use nullval tasks eval (Node a v b) tasks = eval a ((A v b):tasks)</p> <p>use aval ((A v b):tasks) = eval b ((B aval v):tasks) use bval ((B aval v):tasks) = use (nodefunc aval v bval) tasks use val [] = val</p> <p>-- actual substitute function flatten2 :: Tree -> Result flatten2 tree = eval tree [] </pre></code></p>