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
4answers
100 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
118 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 ...
3
votes
2answers
133 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?
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 ...
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 ...
4
votes
4answers
338 views

a tail-recursion version list appending function

i see several examples of implementing append an element to a list, but all are not using tail recursion. how to implement such a function in a functional style? (define (append-list lst elem) ...
2
votes
3answers
258 views

Racket: Identifying tail recursion?

I wrote two different functions in racket to determine whether a list of numbers is ascending: (define (ascending list) (if (<= (length list) 1) #t (and (< (car list) (car (cdr ...
1
vote
2answers
273 views

Using Scheme to find the least element in a list

(define min (lambda (l m c) (cond ((null? l) (print m)) (else ((c (car l)) if((< c m) (m c)) min((cdr l) m c)))))) I want to use the ...
1
vote
1answer
86 views

Beginner Scheme: Procedures that return themselves

This is an example from the book I am reading: 1 (define (length items) 2 (define (length-iter a count) 3 (if (null? a) 4 count 5 (length-iter (cdr a)(+ 1 count)))) 6 ...
4
votes
3answers
459 views

Creating a tail-recursive power function in scheme

I was wondering how do you implement a tail-resursive power function in scheme? I've got my recursive one defined for scheme: (define power-is-fun (lambda (x y) (cond [(= y 0) 1] ...
7
votes
3answers
234 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 ...
2
votes
2answers
276 views

How to translate the following into a tail recursive procedure?

I have the following mathematical expression: ; f(n) = f(n - 1) + f(n - 2) where n >= 2 ; f(n) = n where n < 2` Which I translated into a normal recursive LISP call: (define (f n) (cond ...
0
votes
1answer
125 views

Scheme function that sum number u and list x u+x1+x2

Im new to Scheme and trying to make function that is (in f u x), u is integer, x is a list and f binary function. The scheme expression (in + 3 '(1 2 3)) should return 3+1+2+3=9. I have this but if i ...
0
votes
2answers
150 views

Tail-recursive?

I'm writing a function that takes a list and returns the sum of the squares of all items in the list. Called on (1 2 3) it should return 14: (12 + 22 + 32). I have this sqsum function: (define ...
1
vote
2answers
443 views

Continuation passing style makes things tail recursive?

It hurts to ask it here. It really does. Every time I search in vain for the answers to my troubles, I see it. Taunting me. Stack Overflow. Anyway, some hellish influence caused me to attempt to ...
1
vote
3answers
642 views

scheme, list of functions as parameter

I'm trying to solve this problem. I was wondering if someone would help get started on it or give me some hints. function called apply-all that, when given a list of functions and a number, will ...
5
votes
1answer
348 views

Converting a function with two recursive calls in scheme to make it tail-recursive

Before I start: YES, this is homework from college. Before I get told that I'm lazy and evil: this part of the homework was to convert two functions we already had, this one is the 6th. (define ...
2
votes
1answer
653 views

Scheme: changing recursion to tail recursion

I'm unsure of how to turn count-forwards into a tail-recursive program. It takes a non-negative number, n, and returns the list of integers from 0 to n (including n). Edit: Okay, I finally got this ...
2
votes
2answers
139 views

“and” and tail recursion

Can I build iterative process using recursive call in and statement? For example, purpose, we have function foo that doesn't do anything. What kind of process it will create (iterative or recursion)? ...
1
vote
1answer
251 views

How can I tell if my tail-recursive Scheme function is being optimized correctly

I have a Scheme function who's basic form looks like this (define (foo param var) (cond ((end-condition) (return-something)) ((other-end-condit) (return-something-else)) (else ...
1
vote
3answers
697 views

Scheme accumulative recursion with lists

How can I pass a list as a parameter to a function adding elements to it recursively,and have it unmodified when it comes out of recursion? I want to use the list at each level of recursion with the ...
0
votes
5answers
562 views

Scheme. Tail recursive?

any tail-recursive version for the below mentioned pseudocode ? Thanks ! (define (min list) (cond ((null? list) '()) ((null? (cdr list)) (car list)) (#t (let ((a (car list)) ...
1
vote
1answer
195 views

Looking for an example of a typical tree-recursion turned into a tail-recursive form

Anything like flatten, count-atoms, etc. over nested lists would do fine. BTW, I'm not interested in a CPS transformation or "pairs-trees".
15
votes
1answer
529 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) ...