Python Recursion
Python Recursion
Recursion: == Define a base case and continue reducing the problem until the base case is reached.
Eg:
array = [1,7,8,5,4]
def length_of_list(array):
return 0
return 1+length_of_list(array[1:])
a=length_of_list(array)
print(a)
o/p: 5
Errors:
RecursionError: maximum recursion depth exceeded ====> base condition never met
Stack is a data structure that holds sequence of data and lets you interact with topmost data item
only.==FILO
Eg-2: Python remembers the last function call and acts accordingly i.e order of execution is - recent
fn call -----> first fn call.
def a():
print("start of a")
b()
print("end of a")
def b():
print("start of b")
c()
print("end of b")
def c():
print("start of c")
print("end of c")
a()
O/P:
start of a
start of b
start of c
end of c
end of b
end of a
Limitation:
Python has limitation of 1000 function calls , eg: factorial(1001), where our script involves more than
1000 fn calls.= gives recursion error.
Tail call optimization/Elimination: optimizing the recursive function call (which is actually the tail
of recursive function).
Without TCO:
The first function is not tail recursive because when the recursive call is made, the
function needs to keep track of the multiplication it needs to do with the result after the
call returns.
Memoization: reduces To remember the function return values so that the next time if the fn takes
same parameter, it eliminates the need for recalculating
OOPS:
Linear data structure:
Stack: Use stack when you want quick access to the most recent item and keep the items in order.
Sorting:
Insertion
Merge