Tagged Questions

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.

learn more… | top users | synonyms (1)

96
votes
12answers
10k 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 ...
86
votes
15answers
26k views

What is tail-recursion?

Whilst starting to learn lisp, I've come across the term tail-recursive. What does it mean?
48
votes
8answers
4k 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. ...
47
votes
24answers
7k views

Understanding recursion

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 ...
42
votes
2answers
950 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 ...
38
votes
6answers
5k 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?
33
votes
19answers
7k 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. ...
33
votes
10answers
6k 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 ...
32
votes
53answers
8k 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 ...
30
votes
16answers
17k 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 ...
29
votes
9answers
4k 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 ...
28
votes
4answers
1k 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?
27
votes
6answers
818 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; ...
27
votes
4answers
414 views

Instantiation of recursive generic types slows down exponentially the deeper they are nested. Why?

Let's start with these three recursive generic interfaces† that represent immutable stacks: interface IStack<T> { INonEmptyStack<T, IStack<T>> Push(T x); } interface ...
26
votes
23answers
3k 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 ...
26
votes
5answers
8k 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#.
25
votes
44answers
4k 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 ...
23
votes
7answers
1k 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 ...
23
votes
12answers
1k 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 ...
23
votes
8answers
31k 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 ...
22
votes
1answer
731 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 ...
22
votes
7answers
2k 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 ...
22
votes
15answers
4k 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 ...
20
votes
4answers
391 views

Just a little recursion problem (java)

I'm currently just working my way through some recursion problems, and I am currently stuck on one. The problem is to recursivly insert spaces into a string, into every single possible location, such ...
19
votes
16answers
7k 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 ...
18
votes
4answers
443 views

Why is the type of this function (a -> a) -> a?

Why is the type of this function (a -> a) -> a? Prelude> let y f = f (y f) Prelude> :t y y :: (t -> t) -> t Shouldn't it be an infinite/recursive type? I was going to try and put into ...
18
votes
3answers
671 views

How to translate this Math Formula in PHP?

I'm trying to convert a Math Formula into PHP code. You can see the formula in the accepted answer here: Applying a Math Formula in a more elegant way (maybe a recursive call would do the trick). ...
18
votes
2answers
983 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 ...
18
votes
6answers
336 views

Is tail recursion possible if a comparison depends on the return value?

I had a homework assignment that asked for a function that uses direct recursion to find the index of the left-most, lowest, negative integer in an array. Additional requirements were for the ...
18
votes
6answers
2k 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 ...
18
votes
7answers
3k 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 ...
18
votes
13answers
31k 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 ...
18
votes
3answers
5k 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 ...
17
votes
15answers
2k views

Expression Evaluation and Tree Walking using polymorphism? (ala Steve Yegge)

This morning, I was reading Steve Yegge's: When Polymorphism Fails, when I came across a question that a co-worker of his used to ask potential employees when they came for their interview at Amazon. ...
16
votes
4answers
212 views

Recursive PHP Regex

EDIT: I selected ridgerunner's answer as it contained the information needed to solve the problem. But I also felt like adding a fully fleshed-out solution to the specific question in case someone ...
16
votes
2answers
196 views

Effects of monomorphism restriction on type class constraints

This code breaks when a type declaration for baz is added: baz (x:y:_) = x == y baz [_] = baz [] baz [] = False A common explanation (see Why can't I declare the inferred type? for an example) ...
16
votes
3answers
277 views

Why does removing the else slow down my code?

Consider the following functions: def fact1(n): if n < 2: return 1 else: return n * fact1(n-1) def fact2(n): if n < 2: return 1 return n * fact2(n-1) ...
16
votes
4answers
430 views

JavaScript Performance Long Running Tasks

I noticed a question on here the other day ( Reducing Javascript CPU Usage ) and I was intrigued. Essentially the guy wanted to encrypt some files character by character. Obviously doing all this in ...
16
votes
5answers
3k 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?
16
votes
5answers
2k views

C#: Avoid infinite recursion when traversing object graph

I have an object graph wherein each child object contains a property that refers back to its parent. Are there any good strategies for ignoring the parent references in order to avoid infinite ...
16
votes
10answers
11k 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 ...
16
votes
42answers
6k views

What is the best way to learn recursion?

When I started in programming I started with c++ and was doing recursion in my second semester in a data structures class. I don't even remember how we started it, I think it was linked lists, but its ...
15
votes
6answers
661 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 ...
15
votes
7answers
461 views

Given that b is always non-zero, why `b ? --b : ++b` works, but `--b` does not?

I was trying to multiply two integers using recursion, and wrote this code, accidently: //the original version int multiply(int a, int b) { if ( !b ) return 0; else return a + ...
15
votes
25answers
6k views

How to print 1 to 100 without any looping using C#

I am trying to print numbers from 1 to 100 without using loops, using C#. Any clues?
15
votes
3answers
12k 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 ...
15
votes
19answers
1k views

Is there some way to speed up recursion by remembering child nodes?

For example, Look at the code that calculates the n-th Fibonacci number: fib(int n) { if(n==0 || n==1) return 1; return fib(n-1) + fib(n-2); } The problem with this code is that it ...
14
votes
7answers
2k 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 ...
14
votes
6answers
3k views

Can a lambda function call itself recursively in Python?

A regular function can contain a call to itself in its definition, no problem. I can't figure out how to do it with a lambda function though for the simple reason that the lambda function has no name ...
13
votes
2answers
203 views

Recursive function calling in JavaScript

I know you should tread lightly when making recursive calls to functions in JavaScript because your second call could be up to 10 times slower. Eloquent JavaScript states: There is one important ...

1 2 3 4 5 69