Tagged Questions
The tail-call tag has no wiki summary.
7
votes
4answers
326 views
How to recognize what is, and what is not tail recursion?
Sometimes it's simple enough (if the self call is the last statement, it's tail recursion), but there are still cases that confuse me. A professor told me that "if there's no instruction to execute ...
4
votes
5answers
814 views
Functional languages with concurrent garbage collectors?
Microsoft's new F# programming language provides the powerful combination of functional programming (first-class lexical closures and tail calls) with an efficient concurrent garbage collector that ...
2
votes
1answer
161 views
Immutable Trie structure in F#
I am playing around with the aho-corasick algorithm to try and get a little better with F#, and I ran across a problem with the Trie implementations, they are all mutable or can't be tail call ...
2
votes
1answer
236 views
how is C# tail recursion optimization possible when a stack trace is returned when an exception is raised
I'be seen a few questions regarding missing tail call optimization in C# supposedly making the language ill suited for recursive algorithm implementations. this, however,begs the question, how can we ...
1
vote
3answers
702 views
Visual C++ Tail Call Optimization
According to answers to that question:
Which, if any, C++ compilers do tail-recursion optimization?
it seems, that compiler should do tail-recursion optimization.
But I've tried proposed options and ...
1
vote
2answers
550 views
Tail calling in Java and C#?
I was reading about Clojure and found a discussion about Java not supporting tail calls, in the current version, and that people were throwing exceptions to simulate tail calling in the JVM, anyways ...
0
votes
1answer
173 views
How to implement tail calls in a custom VM
How can I implement tail calls in a custom virtual machine?
I know that I need to pop off the original function's local stack, then it's arguments, then push on the new arguments. But, if I pop off ...