Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hey guys I am not new to programming but I really dont know the difference between recursion or function...I know these are the basic things so thats why I want to clear them. Also are there functions used in java or those are called methods in java?

Now coming to C, I wrote a program of factorial in C. First I wrote it using loops, alright then I thought of writing it through recursion and what I end up with was making a program of factorial using functions, I really dont know the basic difference... If someone have basic notes or some link from where I can read more basic concepts then please provide me. Even I tried google and SOF but but didnt get any useful result.

Guys its my request if you dont want to upvote this post then even dont down vote it. According to me I have searched on stackoverflow but did not get any useful info so only then I am posting this question, also I tried my best to explain my question.

Thanks

share|improve this question
1  
Recursion is just when you have a function that calls itself. You have to have functions to have recursion, but you can have a normal function that does not call itself, and so isn't recursive. – BoBTFish Dec 18 '12 at 10:45
1  
Recursion is a programming technique where a function, as part of its calculation ends up calling itself (either directly or through other functions). – Oded Dec 18 '12 at 10:46
Basically, a recursive function is a function that calls itself. – Joachim Pileborg Dec 18 '12 at 10:46
1  
If you want to understand recursion, you must start reading this page. – LihO Dec 18 '12 at 10:46
Ok so I got that recursion is a function that calls itself...Can you please explain with an example. I mean I understood the function thing . But how would I get to know about this call thing? I am new into this. Please guys dont mind. – Shivam Dec 18 '12 at 10:48

closed as not a real question by duffymo, LihO, stusmith, Max MacLeod, SztupY Dec 18 '12 at 13:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

up vote 1 down vote accepted

Recursion is technique of using function, it's not any element of programming..

This is function,

int function_name (int) {
    .
    .
    .   
    .
}

This is recursive function,

int function_name (int) {
    .
    .
    function_name(...);
    .
}
share|improve this answer

They are not mutually exclusive things and cannot be compared like this. You will almost certainly implement recursion with functions. Functions are a core feature of many programming languages, while recursion is a way in which they can be used.

Recursion is a concept completely independent of any programming language or even programming itself. It just means that something refers to itself. The common example is the following dictionary definition of “recursion”:

recursion (n.) - see recursion

Google demonstrates this joke when you search for “recursion” by saying “Did you mean recursion?”.

A function becomes a recursive function when it calls itself. That is, if you have a function called foo and within the body of foo you find a call to foo, like foo(), it is a recursive function - it calls itself! For example:

void foo() {
  // ...
  foo();
}

Of course, if you just did this, the function would call itself forever and never return. Problems that are solved with recursion need some kind of stopping condition (often called the base case). In the following example, foo will be called recursively n times. The base case is when n == 0.

void foo(int n) {
  if (n != 0) {
    foo(n - 1);
  }
}

Recursive functions can be used to solve many problems that require doing something repeatedly on some subset of the original input. In many cases they can replace loop mechanisms such as while or for.

share|improve this answer

Recursion is when you're calling your function again from itself.
(Be careful to do that not too often, because it'll flood your callstack.)

share|improve this answer

In the recursive function, every time that a recursive call is made, the program branches to the new function call. Since the program was in the middle of executing another call to the same function, it needs to store the necessary information to allow it to return to the point where it branched. This information is stored in a data structure called a stack and is placed on the top of the stack. When the program has finished executing the new function, it returns to the stack, finds the values it was working with before and completes the unfinished function. In this function, there are lots of branches to place in the stack before returning and this slows the program down more than you might think.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.