Reucursive
- Properties of Recursion
- Some operation is performed multiple times with different inputs
- In every step we try to make the problem smaller
- We have to have a base condition which tells a system when to stop the recursion.
- Format of a ‘Recursive Function’
- Recursive Case : Case where the function recur
- Base Case : Case where the function does not recur
Factorial example
1 | Factorial(n): |
Fibonacci series
1 | fib(n) |
Time Complexity of Recursive Algo
Problem statement : Given a sorted array of 11 numbers, find number 110
10 20 30 40 50 … 90 100 110Solution
1 | BinarySearch(int findNumber, int arr[], start, end): ----- T(n) |
Time Complexity:
T(n) = O(1) + T(n/2)Back Substitution :
- T(n) = T(n/2) + 1 ——- Equation #1
- T(1) = 1 ——– Base Condition
- T(n/2) = T(n/4) + 1 ——Equation #2
- T(n/4) = T(n/8) + 1 ——Equation #3
T(n) = T(n/2) + 1
= (T(n/4) + 1) + 1
= T(n/4) + 2
= (T(n/8) + 1) + 2
= T(n/8) + 3
= T(n/2^k) + k
n/2^k = 1
n = 2^k
k = log n
= T(1) + log n
= 1 + log n
= log n