Recursion in computer science is a method of problem solving where the solution to a problem depends on solutions to smaller instances of the same problem.
242
votes
16answers
62k views
What is tail-recursion?
Whilst starting to learn lisp, I've come across the term tail-recursive. What does it mean?
183
votes
5answers
4k views
try-finally block prevents StackOverflowError
Take a look at the following two methods:
public static void foo() {
try {
foo();
} finally {
foo();
}
}
public static void bar() {
bar();
}
Running bar() clearly ...
175
votes
13answers
21k views
What is the most efficient/elegant way to parse a flat table into a tree?
Assume you have a flat table that stores an ordered tree hierarchy:
Id Name ParentId Order
1 'Node 1' 0 10
2 'Node 1.1' 1 10
3 'Node 2' 0 ...
126
votes
8answers
17k views
What Is Tail Call Optimization?
Very simply, what is tail-call optimization? More specifically, Can anyone show some small code snippets where it could be applied, and where not, with an explanation of why?
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 ...
78
votes
13answers
20k views
Way to go from recursion to iteration
I've used recursion quite a lot on my many years of programming to solve simple problems, but I'm fully aware that sometimes you need iteration due to memory/speed problems.
So, sometime in the very ...
78
votes
8answers
15k views
Is recursion ever faster than looping?
I know that recursion is sometimes a lot cleaner than looping, and I'm not asking anything about when I should use recursion over iteration, I know there are lots of questions about that already.
...
71
votes
23answers
16k views
Understanding recursion [closed]
Guys I'm having major trouble understanding recursion at school. Whenever the prof is talking about it I seem to get it but as soon as I try it on my own it completely blows my brains. I was trying to ...
60
votes
20answers
14k views
Can every recursion be converted into iteration?
A reddit thread brought up an apparently interesting question:
Tail recursive functions can trivially be converted into iterative functions. Other ones, can be transformed by using an explicit stack. ...
55
votes
4answers
2k views
Infinite loop in constructor without for or while
I did a test here, but the output is a loop without ending, I don't know why.
Actually, I am doing another test, but when I wrote this, I don't understand how the loop occurred. It is output "ABC" ...
52
votes
9answers
79k views
List files recursively in linux with path relative to the current directory
This is similar to this question, but I want to include the path relative to the current directory in unix. If can do the following:
ls -LR | grep .txt
But it doesn't include the full paths. For ...
52
votes
8answers
7k views
Implications of foldr vs. foldl (or foldl')
Firstly, Real World Haskell, which I am reading, says to never use foldl instead of foldl'. So I trust it.
But I'm hazy on when to use foldr vs. foldl'. Though I can see the structure of how they ...
50
votes
3answers
2k views
Recursion schemes for dummies?
I'm looking for some really simple, easy-to-grasp explanations of recursion schemes and corecursion schemes (catamorphisms, anamorphisms, hylomorphisms etc.) which do not require following lots of ...
47
votes
1answer
2k views
What are paramorphisms?
Reading through this classic paper, I'm stuck on paramorphisms. Unfortunately the section is quite thin, and the Wikipedia page doesn't say anything.
My Haskell translation is:
para :: (a -> [a] ...
45
votes
5answers
33k views
How to [recursively] Zip a directory in PHP?
Directory is something like:
home/
file1.html
file2.html
Another_Dir/
file8.html
Sub_Dir/
file19.html
I am using the same PHP Zip class used in PHPMyAdmin ...
43
votes
53answers
16k views
Real-world examples of recursion
Can anyone suggest real-world problems where a recursive approach is the natural solution besides DFS (= depth-first seach) ?
(I don't consider towers-of-Hanoi, fibonacci sequence, or factorial ...
43
votes
14answers
28k views
Is it possible to make a recursive SQL query?
I have a table similar to this:
CREATE TABLE example (
id integer primary key,
name char(200),
parentid integer,
value integer);
I can use the parentid field to arrange data into a tree ...
43
votes
7answers
3k views
Ackermann very inefficient with Haskell/GHC
I try computing Ackermann(4,1) and there's a big difference in performance between different languages/compilers. Below are results on my Core i7 3820QM, 16G, Ubuntu 12.10 64bit,
C: 1.6s, gcc -O3 ...
42
votes
25answers
22k views
Recursion or Iteration?
Is there a performance hit if we use loop instead of recursion or vice versa in algorithms where both can serve the same purpose? Eg : Check if given string is palindrome.
I have seen many programmers ...
42
votes
13answers
80k views
How to search by key=>value in a multidimensional array in PHP
Is there any fast way to get all subarrays where a key value pair was found in a multidimensional array? I can't say how deep the array will be.
Simple example array:
$arr = array(0 => ...
39
votes
6answers
1k views
How to predict the maximum call depth of a recursive method?
For the purposes of estimating the maximum call depth a recursive method may achieve with a given amount of memory, what is the (approximate) formula for calculating the memory used before a ...
38
votes
7answers
3k views
Why are functions in Ocaml/F# not recursive by default?
Why is it that functions in F# and Ocaml (and possibly other languages) are not by default recursive?
In other words, why did the language designers decide it was a good idea to explicitly make you ...
38
votes
7answers
8k views
What exactly is a reentrant function?
Most of the times, the definition of reentrance is quoted from Wikipedia:
A computer program or routine is
described as reentrant if it can be
safely called again before its
previous ...
37
votes
16answers
61k views
Reversing a Linked List in Java, recursively
I have been working on a Java project for a class for a while now. It is an implementation of a linked list (here called AddressList, containing simple nodes called ListNode). The catch is that ...
37
votes
8answers
2k views
Functional Programming - Lots of emphasis on recursion, why?
I am getting introduced to Functional Programming [FP] (using Scala). One thing that is coming out from my initial learnings is that FPs rely heavily on recursion. And also it seems like, in pure FPs ...
36
votes
6answers
8k views
How can I convert a series of parent-child relationships into a hierarchical tree?
I have a bunch of name-parentname pairs, that I'd like to turn into as few heirarchical tree structures as possible. So for example, these could be the pairings:
Child : Parent
H : G
F : G
...
34
votes
3answers
11k views
Python: using a recursive algorithm as a generator
Recently I wrote a function to generate certain sequences with nontrivial constraints. The problem came with a natural recursive solution. Now it happens that, even for relatively small input, the ...
33
votes
38answers
14k views
What is recursion and when should I use it?
One of the topics that seems to come up regularly on mailing lists and online discussions is the merits (or lack thereof) of doing a Computer Science Degree. An argument that seems to come up time and ...
33
votes
4answers
710 views
Instantiation of recursive generic types slows down exponentially the deeper they are nested. Why?
Note: I may have chosen the wrong word in the title; perhaps I'm really talking about polynomial growth here. See the benchmark result at the end of this question.
Let's start with these three ...
31
votes
7answers
10k views
javascript: recursive anonymous function?
Lets say I have a basic recursive function:
function recur(data) {
data = data+1;
var nothing = function() {
recur(data);
}
nothing();
}
How could I do this if I have an ...
31
votes
6answers
18k views
self referential struct definition?
I haven't been writing C for very long, and so I'm not sure about how I should go about doing these sorts of recursive things... I would like each cell to contain another cell, but I get an error ...
31
votes
4answers
13k views
Recursive lambda expression to traverse a tree in C#
Can someone show me how to implement a recursive lambda expression to traverse a tree structure in C#.
30
votes
5answers
2k views
Is it legal to recurse into main() in C++?
I read that the C++ standard forbids recursion in main(), but g++ compiles the following code without complaint:
int main()
{
main();
}
Can anyone clarify this?
30
votes
6answers
2k views
Determining the complexities given codes
Given a snipplet of code, how will you determine the complexities in general. I find myself getting very confused with Big O questions. For example, a very simple question:
for (int i = 0; i < n; ...
29
votes
3answers
3k views
Anonymous recursive PHP functions
Is it possible to have a PHP function that is both recursive and anonymous? This is my attempt to get it to work, but it doesn't pass in the function name.
$factorial = function( $n ) use ( ...
28
votes
9answers
35k views
Recursively list files in Java
How do I recursively list all files under a directory in Java? Does the framework provide any utility?
I saw a lot of hacky implementations. But none from the framework or nio
28
votes
3answers
649 views
Just a little recursion issue in Java
I'm currently just working my way through some recursion problems, and I am currently stuck on one.
The problem is to recursively insert spaces into a string, into every single possible location, ...
27
votes
2answers
2k views
What are recursive arrays good for?
Ruby supports recursive arrays (that is, self-containing arrays):
a = []
# => []
a << a
# => [[...]]
a.first == a
# => true
This is intrinsically cool, but what work can you do ...
27
votes
1answer
1k views
Recursive function causing a stack overflow
I am trying to write a simple sieve function to calculate prime numbers in clojure. I've seen this question about writing an efficient sieve function, but I am not to that point yet. Right now I am ...
27
votes
7answers
2k views
Is there a more modern, OO version of “Let's Build a Compiler”?
Is there a more modern, maybe object-oriented, equivalent to Jack Crenshaw's "Let's Build a Compiler" series?
A while back I stumbled across "Let's Build a Compiler" and could just not resist writing ...
26
votes
23answers
4k views
What is a good example of recursion other than generating a Fibonacci sequence?
Possible Duplicates:
Real-world examples of recursion
Examples of Recursive functions
I see that most programming language tutorial teach recursion by using a simple example which is how ...
25
votes
12answers
2k views
How do I find the millionth number in the series: 2 3 4 6 9 13 19 28 42 63 …?
It takes about minute to achieve 3000 in my comp but I need to know the millionth number in the series. The definition is recursive so I cannot see any shortcuts except to calculate everything before ...
25
votes
15answers
41k views
Tower of Hanoi: Recursive Algorithm
I am a Computer Science student, and as such I have no problem whatsoever understanding recursion. However, I can't seem to wrap my head around the recursive solution to the Tower of Hanoi problem. ...
25
votes
15answers
6k views
Recursion or iteration?
I love recursion. I think it simplifies things a lot. Another may disagree; I think it also makes the code a lot easier to read. However, I've noticed that recursion is not used as much in languages ...
24
votes
2answers
8k views
Bash - Recursively Create Nonexistant Subdirectories
I am creating a quick backup script that will dump some databases into a nice/neat directory structure and I realized that I need to test to make sure that the directories exist before I create them. ...
24
votes
3answers
2k views
Writing foldl using foldr
In the RealWorldHaskell, Chapter 4. Functional Programming
Write foldl with foldr:
-- file: ch04/Fold.hs
myFoldl :: (a -> b -> a) -> a -> [b] -> a
myFoldl f z xs = foldr step id xs z
...
23
votes
7answers
3k views
Yield in a recursive function
I am trying to do something to all the files under a given path. I don't want to collect all the file names beforehand then do something with them, so I tried this:
import os
import stat
def ...
23
votes
4answers
21k views
Python - Using __getattribute__ method
I want to override access to one variable in a class, but return all others normally. How do I accomplish this with __getattribute__?
I tried the following (which should also illustrate what I'm ...
22
votes
5answers
7k views
Tail recursion in C++
Can someone show me a simple tail-recursive function in C++?
Why is tail recursion better, if it even is?
What other kinds of recursion are there besides tail recursion?
22
votes
9answers
18k views
Expressing recursion in LINQ
I am writing a LINQ provider to a hierarchal data source. I find it easiest to design my API by writing examples showing how I want to use it, and then coding to support those use cases.
One thing I ...
