show/hide this revision's text 3 made tail recursive

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

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

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

show/hide this revision's text 2 added link to wikipedia

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

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

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

show/hide this revision's text 1

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

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

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