Tail recursion is a recursive strategy in which a function does some amount of work, then invokes itself. The "tail" refers to the fact that the recursion is at the very end of the function. Many -- especially functional -- programming languages can turn these types of calls into non-recursive jumps, meaning tail recursion in supported languages can be used without fear of a stack overflow, regardless of the number of calls.
Stats
created |
2 years ago |
viewed |
44 times |
editors |
1 |
Recent Hot Answers
What is tail-recursion?What is tail-recursion?
How exactly does tail recursion work?
Does Ruby perform Tail Call Optimization?
How do I break out of a loop in Scala?
more »
Related Tags
recursion × 105scala × 45
functional-programming × 37
tail-call-optimization × 36
f# × 31
haskell × 31
scheme × 26
clojure × 19
java × 16
optimization × 15
c++ × 15
lisp × 14
algorithm × 14
c × 14
performance × 10
ocaml × 9
stackoverflow × 8
list × 8
python × 8
prolog × 7
erlang × 7
c# × 6
gcc × 6
racket × 6
data-structures × 6