asked 57.2k views
0 votes
What are the overheads associated with recursive algorithms? [

1 Answer

6 votes

Answer:

Lot of Stack place,Performance

Step-by-step explanation:

recursive algorithm is an algorithm which calls itself till some condition satisfied.Recurssion takes a lot of stack space as each time a method calls itself.it effects the performance of the application if there are more number of function calls . Because each function call uses a lot of system resources for execution. So it will make your application to run slower

answered
User TheSnooker
by
8.4k points