D A R K - C O D E R

Loading

C Programming Recursion | Learn the Fundamentals of Recursive Function in C

Recursion is a technique in computer science where a function calls itself to solve a problem. It is a powerful tool that can solve many problems elegantly and efficiently. In C programming, recursion is implemented using function calls and can solve various issues, such as traversing data structures, searching, and sorting.

Factorial Function:

A classic example of recursion is the calculation of the factorial of a number. The factorial of a number n, represented by n! is the product of all the integers from 1 to n. The mathematical definition of factorial can be represented as n! = n * (n-1) * (n-2) * … * 1

This problem can be solved using a recursive function, as shown in the following code:

#include 

int factorial(int n) {
    if (n == 1) {
        return 1;
    }
    return n * factorial(n - 1);
}

int main() {
    int num = 5;
    int result = factorial(num);
    printf("Factorial of %d is %d\n", num, result);
    return 0;
}

In this example, the function factorial(int n) is called recursively to calculate the factorial of a given number. The function has a base case, where if n is equal to 1, it will return 1. Otherwise, it will return n multiplied by the factorial of n – 1, which is obtained by calling the function recursively.

Fibonacci Series:

Another classic example of recursion is the calculation of the Fibonacci series. The Fibonacci series is a sequence of numbers in which each is the sum of the two preceding ones, usually starting with 0 and 1. The mathematical definition of the Fibonacci series can be represented as F(n) = F(n-1) + F(n-2)

This problem can be solved using a recursive function, as shown in the following code:

#include 

int fibonacci(int n) {
    if (n == 0) {
        return 0;
    }
    if (n == 1) {
        return 1;
    }
    return fibonacci(n - 1) + fibonacci(n - 2);
}

int main() {
    int num = 10;
    for (int i = 0; i < num; i++) {
        printf("%d ", fibonacci(i));
    }
    printf("\n");
    return 0;
}

In this example, the function Fibonacci (int n) is called recursively to calculate the nth number in the Fibonacci series. The function has two base cases, where if n is equal to 0 or 1, it will return the corresponding value. Otherwise, it will return the sum of the Fibonacci of n-1 and n-2, obtained by calling the function recursively.

Recursion can be a powerful tool for solving problems in C programming, but it should be used cautiously. Recursive functions can cause stack overflow if the recursion is not terminated properly. It’s important always to have a base case and ensure that the recursion eventually terminates.

In conclusion, recursion is a technique in computer science where a function calls itself to solve a problem. It can solve many problems in C programming elegantly and efficiently. Examples of such issues include calculating the factorial of a number and the Fibonacci series. Using recursion with caution is important, as it can cause stack overflow if the recursion is not terminated properly. Please ensure that you have a base case and that the recursion eventually terminates.

In addition to the examples mentioned above, recursion can be used to solve other problems, such as traversing data structures like linked lists and trees, and solving problems, such as the Tower of Hanoi, where a stack-like behavior is needed.

Tower of Hanoi:

The Tower of Hanoi is a classic puzzle that consists of three rods and several disks of different sizes, which can slide onto any rod. The puzzle starts with the disks in a neat stack in ascending order of size on one rod, the smallest at the top and the largest at the bottom. The objective of the puzzle is to move the entire stack to another rod, obeying the following simple rules:

  • Only one disk can be moved at a time.
  • Each move consists of taking the upper disk from one of the rods and sliding it onto another rod on top of the other disks that may already be present on that rod.
  • No disk may be placed on top of a smaller disk.

This problem can be solved using a recursive function, as shown in the following code:

#include 

void towerOfHanoi(int n, char from_rod, char to_rod, char aux_rod) {
    if (n == 1) {
        printf("Move disk 1 from rod %c to rod %c\n", from_rod, to_rod);
        return;
    }
    towerOfHanoi(n-1, from_rod, aux_rod, to_rod);
    printf("Move disk %d from rod %c to rod %c\n", n, from_rod, to_rod);
    towerOfHanoi(n-1, aux_rod, to_rod, from_rod);
}

int main() {
    int n = 4;
    towerOfHanoi(n, 'A', 'C', 'B');
    return 0;
}

In this example, the function towerOfHanoi(int n, char from_rod, char to_rod, char aux_rod) is called recursively to solve the Tower of Hanoi problem. The function has a base case, where if n is equal to 1, it will print the move of the disk from one rod to another. Otherwise, it will move the top n-1 disks from the from_rod to the aux_rod using the to_rod, then move the nth disk from the from_rod to the to_rod, and finally move the n-1 disks from the aux_rod to the to_rod using the from_rod. This process is done recursively until the base case is reached.

In this example, the function towerOfHanoi(int n, char from_rod, char to_rod, char aux_rod) takes four arguments, the number of disks, and the three rods represented by characters. The function uses the concept of recursion to solve the problem, breaking the problem of moving n disks into two subproblems of moving n-1 disks. This process is repeated until the base case is reached, where only one disk is left to be moved.

conclusion:

In conclusion, recursion is a powerful technique in computer science that can solve many problems in C programming elegantly and efficiently. The examples of calculating the factorial of a number, the Fibonacci series, and the Tower of Hanoi puzzle demonstrate the power and versatility of recursion. Using recursion with caution is important, as it can cause stack overflow if the recursion is not terminated properly. Please always ensure that you have a base case and that the recursion eventually terminates.