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 ...

learn more… | top users | synonyms

0
votes
0answers
14 views

Broke Tail recursion?

I have studied programming language course, I have this variant of scheme code in the slide , ;(listof any) -> (listof any[no-cons]) (define (remove-pairs l) (cond [(empty? l) '()] ...
-1
votes
1answer
52 views

Deconstructing a recursive process - SICP

Consider the following definition: (define foo (lambda (x y) (if (= x y) 0 (+ x (foo (+ x 1) y))))) What is the test expression? (write the actual ...
1
vote
2answers
75 views

Is there a way to break out of @tailrec in Scala?

I have a method that is recursive. Is there a way in scala to break out based on the size of the buffer (as shown below)? A case for breaking out when elementList.size > 5 for example? val ...
2
votes
0answers
62 views

Why the following function doesn't generate tail recursion with Clang?

Under clang the following function generates object code for a tail recursive function: template<typename T> constexpr bool is_prime(T number, T limit, T counter) { return counter >= ...
2
votes
1answer
104 views

What's the most efficient tail recursive prime verification function known?

I was experimenting with meta programming to this point: // compiled on Ubuntu 13.04 with: // clang++ -O3 -ftemplate-depth-8192 -fconstexpr-depth=4096 -std=c++11 -stdlib=libc++ -lcxxrt -ldl ...
1
vote
2answers
196 views

How do I turn a recursive algorithm into a tail-recursive algorithm?

As a first attempt to get into merge sort i produced the following code which works on strings because they are easier than lists to deal with. class Program { static int iterations = 0; ...
1
vote
0answers
105 views

Tail recursion vs. more readable code in scala - could we have both? [closed]

I'm just learning Scala, so this may already be addressed by some language feature I'm as yet unaware of. Using the factorial example: def factorial(n: Int): Int = { if (n == 1) 1 else n * ...
2
votes
1answer
113 views

Tail recursion in clojure

This is a lisp code that uses tail recursion. (defun factorial (f n) (if (= n 1) f (factorial (* f n) (- n 1)))) I translate this into clojure code expecting the same tail ...
3
votes
2answers
99 views

Common Lisp: Why does my tail-recursive function cause a stack overflow?

I have problem in understanding the performance of a Common Lisp function (I am still a novice). I have two versions of this function, which simply computes the sum of all integers up to a given n. ...
3
votes
2answers
157 views

How can I convert this binary recursive function into a tail-recursive form?

There is a clear way to convert binary recursion to tail recursion for sets closed under a function, i.e. integers with addition for the Fibonacci sequence: (Using Haskell) fib :: Int -> Int fib ...
0
votes
1answer
37 views

Tail v. Head Recursion

I was wondering if you would identify this as a head or tail recursive function: int exponentiation(int x, int y){ if(!y) { return 1; } return y > 1 ? x * exponentiation(x, y-1) : x; }
0
votes
1answer
65 views

Sudoku algorithm with backtracking does not return any solution

i'm a bit stuck with the Sudoku algorithm, i coded it using backtrack, and following the theorical steps this should work, and i tried to debuge it, but is too hard (and yes, it solve some numbers and ...
0
votes
4answers
92 views

Is this function really tail-recursive?

I read about recursion in Programming Interviews Exposed (3rd ed.) where they present the following recursive factorial function: int factorial(int n){ if (n > 1) { /* Recursive case */ ...
1
vote
0answers
73 views

How to Convert Recursion to Tail Recursion

Is it always possible to convert a recursion into a tail recursive one? I am having a hard time converting the following Python function into a tail-recursive one. def BreakWords(glob): """Break a ...
1
vote
1answer
55 views

tail recursion fails (possibly because of implicit cons conversion)

I have what I believe to be a fairly simple tail-recursive function. However, @tailrec tells me otherwise. @tailrec def _next(continue : String, current : List[Long], first : Boolean ) : ...
1
vote
1answer
59 views

python - traverse a graph (find all issues linked)

I'm bit stuck trying to solve a simple task of getting all linked issues. This is basically a graph task I guess - I take a jira issue, find all its links and then go to linked issues for their links ...
1
vote
1answer
76 views

“Replacing” an element matching a predicate in an arbitrarily nested List in Scala

I have the following list (just an example - the list can be of an arbitrary depth); val foo = List(1, List(2, List(3, 4)), List(5, List(6, List(7, List(8,9,10))))) I want to traverse the list, and ...
1
vote
1answer
93 views

Prolog, recursive return values are dissapearing

I have written a program to evaluate a post-fix expression in prolog recursively from an expression list. For example, given the following list: [+,1,2] It should return 3. They way I have ...
0
votes
1answer
54 views

Tail recursion in gcc/g++

I've tried to search, but was unable to find: what are requisites for functions so that gcc would optimize the tail recursion? Is there any reference or list that would contain the most important ...
1
vote
1answer
76 views

tail recursion and Boolean operators

I am currently learning F# on my own (via the try f# site). I have the following (imho) tail-recursive function for existential quantification of a unary predicate (int->bool). let rec exists bound ...
10
votes
1answer
226 views

why do continuations avoid stackoverflow?

I've been trying to understand continuations / CPS and from what I can gather it builds up a delayed computation, once we get to the end of the list we invoke the final computation. What I don't ...
1
vote
1answer
84 views

Tail recursion - will this make optimal use of frame and how do I check if compiling as tail recursive?

In the below code - quite trivial max and sum of lists - I have a recursive function called at the end of a method. Will the scala compiler treat this as tail recursive and optimize the stack frame ...
1
vote
2answers
143 views

two dimensional tail recursion in scala

I am new to Scala and started to learn about tail recursion. I learned that tail recursion in functional programming is a counter part of iterations (for loops) in imperative programming: Simple C++ ...
0
votes
2answers
70 views

Prolog Sum of All Instances in a List of Facts

I have a list of facts. Each fact defines a relationship between two subjects and the number of projects they've completed. They're defined like this: ...
1
vote
2answers
77 views

Is this scheme code tail recursive?

EDIT: Thanks to everyone. I'm new to the language(just started using it two days ago), so that's why I'm unfamiliar with conds. I may rewrite it if I have time, but I just wanted to make sure I had ...
2
votes
3answers
118 views

Why do I still burn out the stack using tail recursive Fibonacci algorithm?

Stack overflows before n=1000. Is it because of the reference to the long[] parameter, that the JVM feels the need to hold on to every stack frame (wild guess), or am I doing something else wrong? ...
2
votes
2answers
55 views

Endless loop recur

I'm learning Clojure and I've just started on project euler and I've run into a problem I cannot figure out. Here is my code: (defn largest_prime_factor [x] (if (prime? x) x) (loop [running x ...
82
votes
5answers
3k views

How exactly does tail recursion work?

I almost understand how tail recursion works and the difference between it and a normal recursion. I only don't understand why it doesn't require stack to remember its return address. // tail ...
0
votes
1answer
78 views

Scala Tail Recursion Optimization on Short-Circuited Boolean Operations

I wrote a function like this in Scala: def isSorted[T](list : List[T])(compare : (T, T) => Boolean) : Boolean = { list match { case Nil => true case x :: Nil => true ...
2
votes
4answers
106 views

is this function tail recursive?

in racket, i define the following function and am wondering whether it is tail recursive: (define foo (λ (c m s1 s2) (if (< c m) (if (= (modulo m c) 0) (foo (+ c 1) ...
2
votes
4answers
128 views

which one is tail recursion?

i see both of the following functions are syntactically tail recursive ones, but, in racket, which of them is really treated as tail recursion, or both? i mean whether it is optimized as tail ...
2
votes
1answer
126 views

How to find out if Prolog performs Tail Call Optimization

Using the development version of SWI Prolog (Win x64), I wrote a DCG predicate for a deterministic lexer (hosted on github) (thus all external predicates leave no choice points): ...
3
votes
1answer
95 views

How to make a tail-recusive method that can also refer to itself in a non-tail-recursive way

Suppose I have a mechanism for long-running computations that can suspend themselves to be resumed later: sealed trait LongRunning[+R]; case class Result[+R](result: R) extends LongRunning[R]; case ...
1
vote
2answers
120 views

Strict version of foldl running infinitely

I can't understand why the following function causes an infinite loop: import Data.List isTrue = foldl' (&&) False (repeat False)
6
votes
3answers
231 views

Stack overflow from recursive function call in Lisp

I am learning Lisp from the book "The Land of Lisp" by Conrad Barski. Now I have hit my first stumbling block, where the author says: Calling yourself in this way is not only allowed in Lisp, but ...
-1
votes
1answer
46 views

Recursive method that prints a number vertically [closed]

I want to write a recursive method let's say "printVertical" that takes as input a positive integer and prints its digits in vertical. For example the output of the call: printVertical(2849) is: 9 4 ...
4
votes
1answer
272 views

Scala recursion vs loop: performance and runtime considerations

I've wrote a naïve test-bed to measure the performance of three kinds of factorial implementation: loop based, non tail-recursive and tail-recursive. Surprisingly to me the worst performant was ...
4
votes
2answers
127 views

Can a function be optimized for tail recursion even when there are more than one distinct recursive calls?

As I mentioned in a recent SO question, I'm learning F# by going through the Project Euler problems. I now have a functioning answer to Problem 3 that looks like this: let rec findLargestPrimeFactor ...
3
votes
2answers
159 views

scheme tail recursion

I am trying to create a scheme tail recursive function flatten-tl-rec that flattens a nested list of lists. (define flatten-tl-rec (lambda (xs) (letrec ([flatten-tl-rec-acc ...
3
votes
3answers
89 views

why is tail recursion required in all implementations in scheme?

Tail recursion is more efficient because it reuses the same stack frame instead of creating a new one, but why is this required for everything in scheme?
0
votes
1answer
109 views

How would I turn this into a tail recursion? Haskell

Hey guys I'm trying to get the the index of an element that is in a list. However the problem I am having is when the element isn't in the list. I'm thinking that maybe tail recursion is in order, ...
0
votes
2answers
92 views

Haskell - Basic Tail Recursion

I have a function that has parameters whatIndex :: (Eq a) => a -> [a] -> Integer where I return the index of a inside [a], starting at 0, or return -1 if it's not found. This is what I ...
0
votes
1answer
224 views

How to do tail recursion for a binary tree?

If you have a binary tree, how can you iterate through (using in order) it using tail recursion? I know that tail recursion involves you to calculate the new value as you iterate, and then when you ...
9
votes
5answers
462 views

How to simplify nested-if using to return value in Haskell

I want to check the condition of the previous if condition to determine the next if condition is to be executed or not. Each if condition may return a value. Edit: Sorry for that the example I ...
0
votes
3answers
113 views

Recursive function building

I'm trying to write a function that explores all possible combinations of numbers , given as an array , in hopes to find the minimal group of numbers that add up to a certain amount , which is passed ...
0
votes
1answer
381 views

SML: Tail-recursive local helper function

I'm trying to re-write a code using tail recursive local helper function as part of an assignment. all_except_option is a function that has the return type fn : string * string list -> string list ...
1
vote
3answers
253 views

Recursive path finding in matrix

I need to find a path of the number 1 in a matrix[R][C] starting from matrix[0][0] until it gets to matrix[R-1][C-1], using recursion. I can only go down or right. In most cases, I don't have a ...
3
votes
2answers
174 views

StackOverflowException in non-infinite, recursive string search

Background. My script encounters a StackOverflowException while recursively searching for specific text in a large string. The loop is not infinite; the problem occurs (for a specific search) between ...
3
votes
4answers
110 views

Can this be turned into a tail recursive function?

Going through HtDP and came across a problem which was: Design the function multiply. It consumes a natural number n and multiplies it with some arbitrary number x without using *. This is what I ...
2
votes
2answers
156 views

How is this tail recursive method being iterated?

In below Scala method how is the List xs traversed by method nth? xs.tail is called recursively but why is the tail not always the same value since def tail in trait List just returns the list of ...

1 2 3 4 5 7