0
votes
3answers
159 views
tail recursion sum, power, gcd in prolog?
hi guys, how can I accomplish this:
Give a tail-recursive definition for each of the following predicates.
power(X,Y,Z): XY=Z.
gcd(X,Y,Z): The greatest common divisor of X and Y …
3
votes
3answers
152 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):I …
1
vote
2answers
79 views
Scala and tail recursion
There are various answers on Stack Overflow which explain the conditions under which tail recursion is possible in Scala. I understand the limitations and how and where I can take …
3
votes
3answers
121 views
Does Scala support tail recursion optimization?
Does Scala support tail recursion optimization?
3
votes
4answers
133 views
Limiting recursion depth in Scala
Can you always structure a recursive function for tail-call elimination? If not, what are other strategies to limit the stack size?
For example:
(inspired by http://stackoverflow …
1
vote
8answers
172 views
Recursive function best practices; What are they?
Hello,
What are some other language independent ways of designing recursive functions other than the typical:
if (counter < 1)
return output;
else
callSelf();
Do oth …
0
votes
1answer
88 views
How to implement tail recursion for tree algorithms in prolog.
How could I convert the following into a tail recursive version.
sum(void,0).
sum(t(V,L,R),S) :-
sum(L,S1),
sum(R,S2),
S is V + S1 + S2.
It seems impossible to maintain a …
6
votes
10answers
316 views
is erlangs recursive functions not just a goto?
Hi,
Just to get it straight in my head. Consider this example bit of Erlang code:
test() ->
receive
{From, whatever} ->
%% do something
…
1
vote
3answers
324 views
iPhone dev — performSelector:withObject:afterDelay or NSTimer?
To repeat a method call (or message send, I guess the appropriate term is) every x seconds, is it better to use an NSTimer (NSTimer's scheduledTimerWithTimeInterval:target:selector …
11
votes
4answers
782 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 …
6
votes
1answer
266 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 []
H …
5
votes
2answers
253 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?
1
vote
1answer
75 views
Does PL/SQL perform tail call optimization?
I'm fairly new to the language, and I was wondering if tail calls were optimized. In other language I could examinate the machine code or an intermediate representation and figure …
3
votes
11answers
689 views
Which languages support tail recursion optimization?
which languages support tail recursion optimization?
6
votes
5answers
355 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, w …
