Whilst starting to learn lisp, I've come across the term tail-recursive. What does it mean?
|
|
Tail recursion is well-described in previous answers, but I think an example in action would help to illustrate the concept. Consider a simple function that adds the first N integers. (e.g. Here is a simple Python implementation that uses recursion:
If you called
Note how every recursive call has to complete before the Python interpreter begins to actually do the work of calculating the sum. Here's a tail-recursive version of the same function:
Here's the sequence of events that would occur if you called
In the tail-recursive case, with each evaluation of the recursive call, the Note: As mentioned in the comments, Python doesn't have built-in support for optimizing away tail calls, so there's no advantage to doing this in Python. However, you can use a decorator to achieve the optimization. |
||||||||
|
|
|
In traditional recursion, the typical model is that you perform your recursive calls first, and then you take the return value of the recursive call and calculate the result. In this manner, you don't get the result of your calculation until you have returned from every recursive call. In tail recursion, you perform your calculations first, and then you execute the recursive call, passing the results of your current step to the next recursive step. This results in the last statement being in the form of "(return (recursive-function params))" (I think that's the syntax for Lisp). Basically, the return value of any given recursive step is the same as the return value of the next recursive call. The consequence of this is that once you are ready to perform your next recursive step, you don't need the current stack frame any more. This allows for some optimization. In fact, with an appropriately written compiler, you should never have a stack overflow snicker with a tail recursive call. Simply reuse the current stack frame for the next recursive step. I'm pretty sure Lisp does this. |
||||
|
|
|
Using regular recursion, each recursive call pushes another entry onto the call stack. When the recursion is completed, the app then has to pop each entry off all the way back down. With tail recursion, the compiler is able to collapse the stack down to one entry, so you save stack space...A large recursive query can actually cause a stack overflow. Basically Tail recursions are able to be optimized into iteration. |
||
|
|
|
|
Instead of explaining it with words, here's an example. This is a Scheme version of the factorial function:
Here is a version of factorial that is tail-recursive:
You will notice in the first version that the recursive call to fact is fed into the multiplication expression, and therefore the state has to be saved on the stack when making the recursive call. In the tail-recursive version there is no other S-expression waiting for the value of the recursive call, and since there is no further work to do, the state doesn't have to be saved on the stack. As a rule, Scheme tail-recursive functions use constant stack space. |
||
|
|
|
|
An important point is that tail recursion is essentially equivalent to looping. It's not just a matter of compiler optimization, but a fundamental fact about expressiveness. This goes both ways: you can take any loop of the form
where
Of course,
is equivalent to the tail-recursive function(s)
(This "wrapping" of the tail-recursive function with a function with fewer parameters is a common functional idiom.) |
||
|
|
|
|
I'm not a Lisp programmer, but I think this will help. Basically it's a style of programming such that the recursive call is the last thing you do. |
||
|
|
|
|
This excerpt from the book Programming in Lua ( http://www.lua.org/pil/6.3.htm ) shows how to make a proper tail recurssion (in Lua, but should apply to Lisp too) and why it's better.
So you see, when you make a recursive call like:
This is not tail recursive because you still have things to do (add 1) in that function after the recursive call is made. If you input a very high number it will probably cause a stack overflow. |
|||
|
|
|
|
It means that rather than needing to push the instruction pointer on the stack, you can simply jump to the top of a recursive function and continue execution. This allows for functions to recurse indefinitely without overflowing the stack. I wrote a blog post on the subject, which has graphical examples of what the stack frames look like. |
||
|
|
|
|
The jargon file has this to say the definition of tail recursion: tail recursion /n./ If you aren't sick of it already, see tail recursion. |
||
|
|
|
|
Recursion means a function calling itself. For example: (define (un-ended name) (un-ended 'me) (print "How can I get here?")) Tail-Recursion means the recursion that conclude the function: (define (un-ended name) (print "hello") (un-ended 'me)) See, the last thing un-ended function (procedure, in Scheme jargon) does is to call itself. Another (more useful) example is:
(define (map lst op)
(define (helper done left)
(if (nil? left)
done
(helper (cons (op (car left))
done)
(cdr left))))
(reverse (helper '() lst)))
In the helper procedure, the LAST thing it does if left is not nil is to call itself (AFTER cons something and cdr something). This is basically how you map a list. The tail-recursion has a great advantage that the interperter (or compiler, dependent on the language and vendor) can optimize it, and transform it into something equivalent to a while loop. As matter of fact, in Scheme tradition, most "for" and "while" loop is done in tail-recursion manner (there is no for and while, as far as I know). |
||
|
|
|
|
Tail recursion refers to the recursive call being last in the last logic instruction in the recursive algorithm. Typically in recursion you have a base-case which is what stops the recursive calls and begins popping the call stack. To use a classic example, though more C-ish than Lisp, the factorial function illustrates tail recursion. The recursive call occurs after checking the base-case condition.
Note, the initial call to factorial must be factorial(n, 1) where n is the number for which the factorial is to be calculated. |
||||
|
|
|
here is a Perl 5 version of the
|
|||
|
|
|
|
In Java, here's a possible tail recursive implementation of the Fibonacci function:
Contrast this with the standard recursive implementation:
|
||
|
|
|
|
In normal recursion, there is at least two extra overhead.
Executing a method call and corresponding return statement usually takes longer than incrementing and testing a loop control variable. In addition, a method call ties up some memory that is not freed until the method completes its task because calculation is carried out after the recursive call. In tail-recursive, the calculation is carried out before recursive call so the benefits are at least two.
Example of tail-recursive algorithm to find out the value of factorial number e.g. 5!.
} But if we use normal recursion for above example to find out 5! or any number, we can use following code:
In above (normal recursion) example, multiplication is performed after the recursive call, but in tail-recursive example (1st example), multiplication is performed before the recursive call of the method, when its parameters are evaluated. To convert recursion of the factorial method to a tail-recursive version, we need an additional parameter (in this case, int result) that passes the accumulated value of the factorial down on each recursive call. In the last call of the method, this value os returned as the result. But mind it, some methods are difficult or impossible to convert to tail-recursive versions, and the compiler optimisations are not part of the standard definitions of many languages, among them, Java. If you find that your Java compiler supports this optimisation, you should try converting some methods to tail-recursive versions and see if they run faster than the original versions. |
||||
|
