Recursion

Discussion in 'Programming' started by vishal sharma, Aug 22, 2004.

  1. vishal sharma

    vishal sharma New Member

    Joined:
    Jul 23, 2004
    Messages:
    106
    Likes Received:
    6
    Trophy Points:
    0

    Introduction



    In normal procedural languages, one can go about defining functions and procedures, and 'calling' these from the 'parent' functions. I hope you already know that. Some languages also provide the ability of a function to call itself. This is called Recursion.

    Factorial



    Factorial is a mathematical term. Factorial of a number, say n, is equal to the product of all integers from 1 to n. Factorial of n is denoted by n! = 1x2x3...x n.
    Eg: 10! = 1x2x3x4x5x6x7x8x9x10

    The simplest program to calculate factorial of a number is a loop with a product variable. Instead, it is possible to give a recursive definition for Factorial as follows:

    1) If n=1, then Factorial of n = 1
    2) Otherwise, Factorial of n = product of n and
    Factorial of (n-1)
    Check it out for yourself; it works. The following code fragment (in C) depicts Recursion at work.
    Code:
    int Factorial(int n)
    {
    	if (n==1)
    		return 1; 
    	else 
    		return Factorial(n-1) * n; 
    } 
    
    The important thing to remember when creating a recursive function is to give an 'end-condition'. We don't want the function to keep calling itself forever, now, do we? Somehow, it should know when to stop. There are many ways of doing this. One of the simplest is by means of an 'if condition' statement, as above. In the above example, the recursion stops when n reaches 1. In each instance of the function, the value of n keeps decreasing. So it ultimately reaches 1 and ends. Of course, the above function will run infinitely if the initial value of n is less than 1. So the function is not perfect. The n==1 condition should be changed to n<=1.

    Imagination is a very hard thing. Imagination of Recursion is all the more tricky. Think of clones. Say you have a machine to make clones of yourself, and (for lack of a better pass-time) decide to find the factorial of a number, say 10, using your clones. So, being smart, this is what you do:

    First, there's only You. Let's call you You-1. You have the number 10 in your pocket. Being smart, you know that all you need to find the factorial of 10 (10*9*...*2*1) is to somehow obtain the value of 9 factorial (9*8*..*2*1), and then just multiply it with 10. So that's what you do. You turn on your machine and out pops a clone! You give the clone You-2 strict instructions to find the factorial of 9 and make it quick! Your job is done for a while, so you (You-1) stretch on your sofa sipping on your lemonade. Meanwhile...

    You-2 is (you guessed it) just as smart as you! He tucks his number (9) into his pocket, turns on the machine, and out pops a clone (You-3). The new clone is given the job of 8-factorial, which it proceeds to do while (unbeknownst to you) You-2 is sipping on his own glass of lemonade on his own sofa. And so the story goes on until finally one fine day...

    Out pops You-10 who is given strict instructions (by You-9) to get the factorial of 1. Now, You-10, being just as smart as any of the other you's, knows very well that the factorial of 1 is... 1. So he says to You-9 (who was just about to doze off on his sofa), "Here's your factorial of 1." You-9 snatches the result from his subordinate You-10, takes out his plasma gun, and zaps You-10 out of existence. He scribbles on a piece of paper, calculating the product of the value he got from You-10 with the number in his pocket, 2. "Heh, heh, heh" he thinks, and goes to his boss, You-8, saying,"Here's your factorial of 2..." ...blah...blah... and finally You-2 wakes you up from your slumber, and says to you, "Here's your factorial of 9" You zap him off, multiply by the 10 in your pocket, and There You Have It !! Now, wasn't that simple?

    Here, 'You' were the function. The 'clones' are merely new instances of the same function. They all think and act alike. At one point, there are 10 You's (which occupies a lot of memory space). As soon as an instance returns a value and finishes its job, it is zapped off from memory.

    Recursion can get much, much trickier than that - get your fundas right.
     
    Last edited by a moderator: Nov 27, 2006
  2. anjanesh

    anjanesh New Member

    Joined:
    Dec 25, 2004
    Messages:
    16
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    Freelance Developer
    Location:
    Nerul, Navi Mumbai, India
    Home Page:
    http://anjanesh.com
    Using tertiary function :
    Code:
    unsigned long Factorial(unsigned long f)
    { return f==0 ? 1 : f * Factorial (f - 1); }
    
     
    Last edited: Dec 27, 2004
  3. drdebcol

    drdebcol New Member

    Joined:
    Jun 14, 2009
    Messages:
    4
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    Admin of Bank Database
    Location:
    Kernel Memory
    Home Page:
    http://www.pro9ramming.com
    Good example of recursion is making a chess field filled up with queens in a way they don't attack each other.
    For example :
    0010
    1000
    0001
    0100
    One-s represent queens and Zero-s represent empty fields !
     
  4. asmmasfot

    asmmasfot New Member

    Joined:
    Dec 17, 2009
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    Hello

    I am about to begin work on a similar project for a client of mine. From what I can tell there will be significant overlap in terms of features.
     
  5. drdebcol

    drdebcol New Member

    Joined:
    Jun 14, 2009
    Messages:
    4
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    Admin of Bank Database
    Location:
    Kernel Memory
    Home Page:
    http://www.pro9ramming.com
    Very good example of linear recursion using factorials.
    But you could do it faster with non-recursive algorithm :
    Code:
    # include <iostream>
    # include <cstdio>
    
    using namespace std;
    
    unsigned int factorial(int n)
    {
      unsigned int p=1;
      for (unsigned int i=1;i<=n;i++)
        p*=i;
      return p;           
    }
    
    int main()
    {
        int n;
        cin>>n;
        cout<<factorial(n)<<endl;
        system("pause");
        return 0;
    }
    
    But in this non-recursive algorithm you use more memory than in your
    recursive case.
    Very good tut anyway !
     
  6. Seo_Aryan

    Seo_Aryan Banned

    Joined:
    Nov 16, 2010
    Messages:
    40
    Likes Received:
    2
    Trophy Points:
    0
    I think,
    Recursion, in mathematics and computer science, is a method of defining functions in which the function being defined is applied within its own definition; specifically it is defining an infinite statement using finite components.
    1.A simple base case (or cases), and
    2.A set of rules which reduce all other cases toward the base case.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice