vote up 11 vote down star
3

So apparently, there's been a big brouhaha over whether or not Python needs tail call optimization. This came to a head when someone shipped Guido a copy of SICP because he didn't "get it." I'm in the same boat as Guido. I understand the concept of tail call optimization. I just can't think of any reason why Python really needs it.

To make this easier for me to understand, could someone give me a snippet of code that would be greatly simplified using TCO?

flag

2  
+1, I don't understand the kerfuffle at all either. – Daniel Lew May 20 at 21:58
3  
The discussion wasn't so much about Python needing TCO, but about Guido rejecting it for the wrong reasons. – Mauricio Scheffer May 20 at 23:08

3 Answers

vote up 8 vote down check

Personally, i put great value on tail call optimization; but mainly because it makes recursion as efficient as iteration (or makes iteration a subset of recursion). On minimalistic languages you get huge expressive power without sacrificing performance.

On a 'practical' language (like Python), OTOH, you usually have a lot of other constructions for almost every situation imaginable, so it's less critical. Always a good thing to have, to allow for unforeseen situations, of course

link|flag
That's about what I suspected, but I figured there must be a bigger reason for it. I suppose I was wrong. – Jason Baker May 21 at 12:21
but remember that those 'minimalistic languages' that i mention (Lua and Scheme, for example) are usually both nicer and much faster than Python. in part because having reliable tail call optimization frees your mind and makes programs clearer. unfortunately, i don't know any one as practical as Python. – Javier May 21 at 14:09
vote up 4 vote down

If you intensely want to use recursion for things that might alternatively be expressed as loops, then "tail call optimization" is really a must. However, Guido, Python's Benevolent Dictator For Life (BDFL), strongly believes in loops being expressed as loops -- so he's not going to special-case tail calls (sacrificing stack-trace dumps and debugging regularity).

link|flag
vote up 4 vote down

Tail call optimization makes it easier to write recursive functions without worrying about a stack overflow:

def fac(n, result=1):
        if n > 1:
                return fac(n - 1, n * result)
        return result

Without tail call optimization, calling this with a big number could overflow the stack.

link|flag
3  
Standard academic example. Any example with real world usage? – ebo May 20 at 22:04
4  
in fact, this isn't tail recursive. the multiplication is in the tail, not the recursion. – Javier May 20 at 22:15
3  
def fac(n): return reduce(operator.mul, range(1, n+1)) – John Fouhy May 20 at 22:24
2  
@Javier, the multiplication is in the tail, and there is no "pending" operation to perform, once the recursive call returns. Hence, that makes it tail recursive. Please correct me if I am wrong. – Amit May 21 at 3:50
@Amit: He was correct originally, I changed the example. But even with the original, a smart compiler could have optimized it. – Zifre May 21 at 20:28
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.