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 ...
3
votes
2answers
139 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
21 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
51 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
87 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
64 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
49 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
50 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
68 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
78 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
44 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
72 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
203 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
79 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
129 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
56 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
70 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
86 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
50 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 ...
81
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
74 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
98 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
117 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
118 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
92 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
119 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
213 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
45 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
236 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
125 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
130 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
86 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
90 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
190 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
411 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
112 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
372 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
207 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
155 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
109 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
151 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 ...
6
votes
4answers
224 views
Should I avoid tail recursion in prolog and in general?
I'm working through "Learn Prolog now" online book for fun.
I'm trying to write a predicate that goes through each member of a list and adds one to it, using accumulators. I have already done it ...
0
votes
1answer
81 views
C++ segfault when passing a string or stream object by reference to recursive function [closed]
I'm trying to serialize my huffman tree to a file, but having issue with the recursive nature of the problem. I have no trouble printing it to console using cout, but I get segmentation fault when I ...
4
votes
2answers
167 views
Why does this code prevent gcc & llvm from tail-call optimization?
I have tried the following code on gcc 4.4.5 on Linux and gcc-llvm on Mac OSX(Xcode 4.2.1) and this. The below are the source and the generated disassembly of the relevant functions. (Added: compiled ...
5
votes
1answer
195 views
Are these functions tail recursive?
I'm learning tail recursion and I'm having some difficulties in determining whether my function is tail recursive or not (mainly on functions which I use another function).
I've implemented the two ...
6
votes
2answers
185 views
Does tail recursion necessarily need an accumulator?
For instance, since the following function don't have an accumulator, is it still tail recursive?
belong:: (Ord a) => a -> [a] -> Bool
belong a [] = False
belong a (h:t)
| a == h = True
...
1
vote
3answers
126 views
Packing symbols using scanLeft
99 scala problems has this question:
Pack consecutive duplicates of list elements into sublists.
If a list contains repeated elements they should be placed in separate sublists.
...
1
vote
1answer
146 views
Can someone describe through code a practical example of backtracking with iteration instead of recursion?
Recursion makes backtracking easy as it guarantees that you won't go through the same path again. So all ramifications of your path are visited just once. I am trying to convert a backtracking ...
1
vote
3answers
407 views
Can a backtracking tail recursive algorithm be converted to iteration?
Let's take the Knight Tour problem. Can that be converted to iteration? What is confunsing me is the backtracking part. How do I backtrack in a loop? Do I have to necessarily use a stack ...
1
vote
1answer
104 views
Tail recursive functions in Scheme
I'm studying for a Christmas test and doing some sample exam questions, I've come across this one that has me a bit stumped
I can do regular recursion fine, but I can't wrap my head around how to ...

