DSA Recursion
DSA Recursion
PYTHON RECURSION
What is recursion?
Recursion is the process of defining something in terms of itself.
A physical world example would be to place two parallel mirrors facing
each other. Any object in between them would be reflected recursively.
PYTHON RECURSIVE
FUNCTION
In Python, we know that a function can call
other functions.
It is even possible for the function to call itself.
These types of construct are termed as recursive
functions.
The following image shows the working of a
recursive function called recurse.
EXAMPLE OF A
RECURSIVE FUNCTION
Following is an example of a recursive function
to find the factorial of an integer. def factorial(x):
Factorial of a number is the product of all the """This is a recursive function to find the factorial of
integers from 1 to that number. an integer""“
For example, the factorial of 6 (denoted as 6!) is if x == 1:
1*2*3*4*5*6 = 720. return 1
else:
return (x * factorial(x-1))
num = 3
print("The factorial of", num, "is", factorial(num))
• Each function multiplies the number with the factorial of the number below it
until it is equal to one. This recursive call can be explained in the following steps.
factorial(3) # 1st call with 3
3 * factorial(2) # 2nd call with 2
3 * 2 * factorial(1) # 3rd call with 1
3*2*1 # return from 3rd call as number=1
3*2 # return from 2nd call 6 # return from 1st call
Let's look at an image that shows
a step-by-step process of what is
going on:
• Our recursion ends when the number reduces to 1. This is called the base condition.
• Every recursive function must have a base condition that stops the recursion or else
the function calls itself infinitely.
• The Python interpreter limits the depths of recursion to help avoid infinite recursions,
resulting in stack overflows.
• By default, the maximum depth of recursion is 1000.
• If the limit is crossed, it results in RecursionError.
Let's look at one such condition.
def recursor():
recursor()
recursor()
Output
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "<string>", line 2, in a
File "<string>", line 2, in a
File "<string>", line 2, in a
[Previous line repeated 996 more times]
RecursionError: maximum recursion depth exceeded
Example 1: A Fibonacci sequence is the integer sequence of 0, 1, 1, 2, 3, 5, 8….
# Recursive function
def recursive_fibonacci(n):
if n <= 1: Output
return n Fibonacci
else: series:
return(recursive_fibonacci(n-1) + recursive_fibonacci(n-2)) 0
1
n_terms = 10 1
2
# check if the number of terms is valid
3
if n_terms <= 0:
print("Invalid input ! Please input a positive value")
5
else: 8
print("Fibonacci series:") 13
for i in range(n_terms): 21
print(recursive_fibonacci(i)) 34
ADVANTAGES OF
RECURSION
•Recursive functions make the code look clean and elegant.
•A complex task can be broken down into simpler sub-problems using recursion.
•Sequence generation is easier with recursion than using some nested iteration.
DISADVANTAGES OF
RECURSION