Tagged Questions

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 programming languages contain aggressive optimizations to speed up tail recursion.

learn more… | top users | synonyms

86
votes
15answers
26k views

What is tail-recursion?

Whilst starting to learn lisp, I've come across the term tail-recursive. What does it mean?
43
votes
4answers
7k views

Which, if any, C++ compilers do tail-recursion optimization?

It seems to me that it would work perfectly well to do tail-recursion optimization in both C and C++, yet while debugging I never seem to see a frame stack that indicates this optimization. That is ...
41
votes
5answers
9k views

Does the JVM prevent tail call optimizations?

I saw this on a question: Scala in particular doesn't support tail-call elimination except in self-recursive functions, which limits the kinds of composition you can do (this is a fundamental ...
29
votes
6answers
5k views

How does Haskell tail recursion work?

I wrote this snippet of code and I assume len is tail-recursive, but a stack overflow still occurs. What is wrong? myLength :: [a] -> Integer myLength xs = len xs 0 where len [] l = l ...
28
votes
2answers
3k views

Does Ruby perform Tail Call Optimization?

Functional languages lead to use of recursion to solve a lot of problems, and therefore many of them perform Tail Call Optimization (TCO). TCO causes calls to a function from another function (or ...
26
votes
4answers
5k views

Why doesn't .NET/C# optimize for tail-call recursion?

I found this question about which languages optimize tail recursion. What I want to know is why C# doesn't optimize tail recursion, whenever possible? For a concrete case, why isn't this method ...
21
votes
2answers
874 views

F# vs OCaml: Stack overflow

I recently found a presentation about F# for Python programmers, and after watching it, decided to implement a solution to the "ant puzzle" on my own. There is an ant which can walk around on a ...
21
votes
4answers
4k views

Why is Clojure much faster than Scala on a recursive add function?

A friend gave me this code snippet in Closure (defn sum [coll acc] (if (empty? coll) acc (recur (rest coll) (+ (first coll) acc)))) (time (sum (range 1 9999999) 0)) and asked me how does it fare ...
20
votes
7answers
5k views

How do I break out of a loop in Scala?

For Problem 4 of Project Euler How do I break out a loop? var largest=0 for(i<-999 to 1 by -1) { for (j<-i to 1 by -1) { val product=i*j if (largest>product) // I want to break out ...
18
votes
6answers
336 views

Is tail recursion possible if a comparison depends on the return value?

I had a homework assignment that asked for a function that uses direct recursion to find the index of the left-most, lowest, negative integer in an array. Additional requirements were for the ...
17
votes
3answers
459 views

Why won't the Scala compiler apply tail call optimization unless a method is final?

for example, this: class C { @tailrec def fact(n: Int, result: Int): Int = if(n == 0) result else fact(n - 1, n * result) } results in "error: could not optimize @tailrec annotated ...
16
votes
5answers
3k views

Tail recursion in C++

Can someone show me a simple tail-recursive function in C++? Why is tail recursion better, if it even is? What other kinds of recursion are there besides tail recursion?
15
votes
3answers
556 views

Explain to me what the big deal with tail call optimization is and why Python needs it

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 ...
14
votes
2answers
668 views

Scala tail recursion problem

I'm kinda new to Scala trying it out while reading Beggining Scala by David Pollack. He defines a simple recursive function that loads all strings from the file: def allStrings(expr: => String): ...
14
votes
3answers
904 views

Are any Javascript engines tail call optimized?

I have a tail recursive pathfinding algorithm that I've implemented in Javascript and would like to know if any (all?) browsers would possibly get stack overflow exceptions.
14
votes
4answers
839 views

Combine memoization and tail-recursion

Is it possible to combine memoization and tail-recursion somehow? I'm learning F# at the moment and understand both concepts but can't seem to combine them. Suppose I have the following memoize ...
14
votes
3answers
518 views

Why does s ++ t not lead to a stack overflow for large s?

I'm wondering why Prelude> head $ reverse $ [1..10000000] ++ [99] 99 does not lead to a stack overflow error. The ++ in the prelude seems straight forward and non-tail-recursive: (++) :: [a] ...
14
votes
8answers
4k views

How do I check if gcc is performing tail-recursion optimization?

How do I tell if gcc (more specifically, g++) is optimizing tail recursion in a particular function? (Because it's come up a few times: I don't want to test if gcc can optimize tail recursion in ...
14
votes
12answers
3k views

Which languages support tail recursion optimization?

which languages support tail recursion optimization?
13
votes
1answer
426 views

Tail Call Elimination in Clojure?

Can somebody rewrite this (plt) Scheme code into Clojure? (define (f n) (printf "(f ~a)~n" n) (g n)) (define (g n) (printf "(g ~a)~n" n) (h n)) (define (h n) (printf "(h ~a)~n" n) ...
11
votes
6answers
345 views

Why does F# impose a low limit on stack size?

I would like to know if there is a fundamental reason for limiting the depth of recursion in F# to 10000 or so, and ideally how to avoid that limit. I think it is perfectly reasonable to write code ...
10
votes
1answer
448 views

Tail call optimization in Mathematica?

While formulating an answer to another SO question, I came across some strange behaviour regarding tail recursion in Mathematica. The Mathematica documentation hints that tail call optimization might ...
10
votes
8answers
996 views

Efficient recursion in functional programming vs. inefficient recursion in different paradigms

As far as I know recursion is very elegant but unefficient in OOP and procedural programming (see the wonderful "High Order perl", Mark Jason Dominus). I had some informations that in functional ...
10
votes
4answers
2k views

Does Scala support tail recursion optimization?

Does Scala support tail recursion optimization?
9
votes
2answers
130 views

Why won't Scala optimize this tail call?

In a recent StackOverflow answer, I gave the following recursive code: def retry[T](n: Int)(fn: => T): T = { try { fn } catch { case e if n > 1 => retry(n - 1)(fn) } } ...
9
votes
2answers
273 views

Recursion over a list of s-expressions in Clojure

To set some context, I'm in the process of learning Clojure, and Lisp development more generally. On my path to Lisp, I'm currently working through the "Little" series in an effort to solidify a ...
9
votes
1answer
357 views

How to use TailCalls?

If I understand correctly, scala.util.control.TailCalls can be used to avoid stack overflows for non-tail-recursive functions by using a trampoline. The example given in the API is straightforward: ...
9
votes
5answers
1k views

haskell - foldl vs foldr question

I wanted to test foldl vs foldr. From what I've seen you should use foldl over foldr when ever you can due to tail reccursion optimization. This makes sense. However, after running this test I am ...
9
votes
1answer
676 views

How do I know if a function is tail recursive in F#

I wrote the follwing function: let str2lst str = let rec f s acc = match s with | "" -> acc | _ -> f (s.Substring 1) (s.[0]::acc) f str [] How can I know if the ...
8
votes
4answers
395 views

F# tail recursion and why not write a while loop?

I'm learning F# (new to functional programming in general though used functional aspects of C# for years but let's face it, that's pretty different) and one of the things that I've read is that the F# ...
8
votes
1answer
705 views

Clojure JVM 7/8 improvements

Rich Hickey and others have mentioned that Clojure will not get a significant improvement from the upcoming invokeDynamic planned for JVM 7 or 8, but will see a performance gain from tail recursion. ...
8
votes
2answers
455 views

How to create a recursive data structure value in (functional) F#?

How can a value of type: type Tree = | Node of int * Tree list have a value that references itself generated in a functional way? The resulting value should be equal to x in the following ...
8
votes
3answers
396 views

Why can't scalac optimize tail recursion in certain scenarios?

Why doesn't scalac (the Scala compiler) optimize tail recursion? Code and compiler invocations that demonstrates this: > cat foo.scala class Foo { def ifak(n: Int, acc: Int):Int = { if (n == ...
8
votes
10answers
561 views

is erlangs recursive functions not just a goto?

Just to get it straight in my head. Consider this example bit of Erlang code: test() -> receive {From, whatever} -> %% do something test(); ...
8
votes
2answers
754 views

What is tail-recursion elimination?

Steve Yegge mentioned it in a blog post and I have no idea what it means, could someone fill me in? Is it the same thing as tail call optimization?
7
votes
3answers
155 views

2 questions at the end of a functional programming course

Here seems to be the two biggest things I can take from the How to Design Programs (simplified Racket) course I just finished, straight from the lecture notes of the course: 1) Tail call ...
7
votes
2answers
214 views

Why is this tail recursive?

check out this Scala-code: def rec(n: Int) { if (n > 1) { val d = n / 2 rec(d) // if (d > 1) // abort loop rec(n/d) } } This code will result in an endless loop. Owing ...
7
votes
4answers
340 views

Problem with Tail Recursion in g++

I'm was messing around with tail-recursive functions in C++, and I've run into a bit of a snag with the g++ compiler. The following code results in a stack overflow when numbers[] is over a couple ...
7
votes
2answers
293 views

Is this implementation tail-recursive

I read in an algorithmic book that the Ackermann function cannot be made tail-recursive (what they say is "it can't be transformed into an iteration"). I'm pretty perplex about this, so I tried and ...
7
votes
4answers
326 views

How to recognize what is, and what is not tail recursion?

Sometimes it's simple enough (if the self call is the last statement, it's tail recursion), but there are still cases that confuse me. A professor told me that "if there's no instruction to execute ...
7
votes
1answer
227 views

Beginner question about heap and garbage in Clojure

I have a question about Clojure: I am trying to learn the language by going through Project Euler and I don't understand what is going on under the hood: The following code is designed to use return ...
7
votes
5answers
825 views

Are there problems that cannot be written using tail recursion?

Tail recursion is an important performance optimisation stragegy in functional languages because it allows recursive calls to consume constant stack (rather than O(n)). Are there any problems that ...
7
votes
5answers
1k views

While or Tail Recursion in F#, what to use when?

Ok, only just in F# and this is how I understand it now : Some problems are recursive in nature (building or reading out a treestructure to name just one) and then you use recursion. In these ...
7
votes
5answers
895 views

Does using a lot of tail-recursion in Erlang slow it down?

I've been reading about Erlang lately and how tail-recursion is so heavily used, due to the difficulty of using iterative loops. Doesn't this high use of recursion slow it down, what with all the ...
6
votes
5answers
325 views

Use of recursion in Scala when run in the JVM

From searching elsewhere on this site and the web, tail call optimization is not supported by the JVM. Does that therefore mean that tail recursive Scala code such as the following, which may run on ...
6
votes
4answers
249 views

Is it possible to convert this recursive solution (to print brackets) to an iterative version?

I need to print the different variations of printing valid tags "<" and ">" given the number of times the tags should appear and below is the solution in python using recursion. def ...
6
votes
4answers
511 views

C tail call optimization

I often hear people say that C doesn't perform tail call elimination. Even though it's not guaranteed by the standard, isn't it performed in practice by any decent implementation anyhow? Assuming ...
6
votes
1answer
297 views

Clojure: Avoiding stack overflow in Sieve of Erathosthene?

Here's my implementation of Sieve of Erathosthene in Clojure (based on SICP lesson on streams): (defn nats-from [n] (iterate inc n)) (defn divide? [p q] (zero? (rem q p))) (defn sieve [stream] ...
6
votes
2answers
355 views

Clojure warning/error on tail call optimization failure

In Scala 2.8.x, a new annotation (@tailrec) has been added that gives a compile-time error if the compiler cannot perform a tail-call optimization on the annotated method. Is there some similar ...
6
votes
2answers
1k views

Tail-recursive merge sort in OCaml

I’m trying to implement a tail-recursive list-sorting function in OCaml, and I’ve come up with the following code: let tailrec_merge_sort l = let split l = let rec _split source left right = ...

1 2 3 4