Questions tagged [tail-recursion]
The tail-recursion tag has no summary.
12 questions
1 vote
0 answers
112 views
Can call stack always be eliminated for singly recursive functions?
Consider a singly recursive function $f$, which, say, has the following form: ...
4 votes
1 answer
274 views
Tail call optimization via translating to CPS
I am struggling to wrap my head around this compiler technique, so let's say here's my factorial function ...
0 votes
1 answer
96 views
Structural induction proof for reverse(push(as, bs)) = push(reverse(bs), reverse(as))
I need to prove: reverse(push(as,bs)) = push(reverse(bs), reverse(as)) where: ...
13 votes
4 answers
5k views
Why is tail recursion better than regular recursion?
There is the axiom you should always prefer tail-recursion over regular recursion whenever possible. (I'm not considering tabulation as an alternative in this question). I understand the idea by why ...
2 votes
1 answer
57 views
Iteration over long linked lists and trees instead recursion
For example exist linked list with thousands (maybe million) elements or very deep tree which some branches are very long and have only one child, but exists other short branches with many children. ...
3 votes
1 answer
262 views
Loop optimization of non-tail recursion
When researching how to optimize recursion into loops, I came upon (on Wikipedia) a general rule about this: Whenever a function is in form: ...
0 votes
0 answers
141 views
Are some algorithms inherently recursive?
Are some algorithms inherently recursive? As in, rewriting it in tail-recursive/iterative form with a stack is still needed, and there is no way to do it otherwise. I am asking because I struggled to ...
3 votes
1 answer
662 views
Tail recursion can't work with dynamic programming programs
I am doing some exercises on dynamic programming in order to get familar with this concept. I've noticed that most of the time it's not difficult to calculate the complexity of a program using dynamic ...
16 votes
2 answers
2k views
What property of cons allows elimination of tail recursion modulo cons?
I'm familiar with the idea of basic tail recursion elimination, where functions that return the direct result of a call to themselves can be rewritten as iterative loops. ...
-1 votes
1 answer
4k views
Stack depth for QuickSort
CLRS Problem : 7.4 How does Tail-Recursive-QuickSort improve the efficiency of quick sort any better ? Original quicksort Tail recursive quicksort Question ...
1 vote
2 answers
540 views
What is the relationship between tail recursion with other recursions?
I'm rather confused by the recursion theory. From the link, the recursion theory was formed by Dedekind, Gödel and some other famous mathematicians. There are the following types of recursion. But ...
6 votes
1 answer
395 views
How can the class of tail recursive functions be compared to the classes of PR and R?
How can the class of tail recursive functions (TR) be compared to the classes of primitive recursive functions (PR) and recursive functions (R)? The computation of a PR function always halts. This ...