What are advantages and disadvantages of recursive
calling ?
Answers were Sorted based on User's Feedback
Answer / santhi
advantage:using recursion we can avoid unnecessary calling
of functions.
disadvantage:by too many recursive functions there may be
confusion in the code.
Is This Answer Correct ? | 134 Yes | 53 No |
Answer / sachin mahajan
Advantages:
Through Recursion one can Solve problems in easy way while
its iterative solution is very big and complex.
Ex : tower of Hanoi
You reduce size of the code when you use recursive call.
Disadvantages :
Recursive solution is always logical and it is very
difficult to trace.(debug and understand)
Before each recursive calls current values of the varibles
in the function is stored in the PCB, ie process control
block and this PCB is pushed in the OS Stack.
So sometimes alot of free memory is require for recursive
solutions.
Remember : whatever could be done through recursion could be
done through iterative way but reverse is not true.
Is This Answer Correct ? | 103 Yes | 30 No |
Answer / anonymous
Advantage :
Recursion is used to divide the problem into same problem
of subtypes and hence replaces complex nesting code.
Disadvantage :
Recursion takes a lot of stack space, usually not
considerable when the program is small and running on a PC.
It is very hard to debug or extend the functionality in
case of recursive logic.
Is This Answer Correct ? | 66 Yes | 8 No |
Answer / rahul
advantage:using recursion we can avoid unnecessary callingof
functions.
disadvantage:recursive calling increase the space complexity.
Is This Answer Correct ? | 45 Yes | 15 No |
Answer / morfy
Use of recursion in an algorithm has both advantages and
disadvantages. The main advantage is usually simplicity.
The main disadvantage is often that the algorithm may
require large amounts of memory if the depth of the
recursion is very large. High memory consumption is due to
large function call number (recursion means that function
calls itself multiple times).
Is This Answer Correct ? | 26 Yes | 5 No |
Answer / ganesh narayanan
advantage : A recursive definition defines an object in simpler cases of itself reducing nested looping complexity
disadvantage : less efficient as compared to the non-recursive counterparts as the overhead involved in entering,re-entering and exiting a block is avoided in case of the non recursive forms. its also possible to identify a number of local variables which need not be saved and restored with the help of stacks and this unwanted stacking activity is avoided in the non-recursive versions.
Is This Answer Correct ? | 26 Yes | 7 No |
Answer / sk_seeker
Why is recursion frowned upon??
User space programs: memory consumption
----------------------------------------
User stack is a dynamic stack i.e. we page fault on the
stack virtual addresses and resolve the fault by allocating
a physical page. Many recursions can lead to a lot of (user
stack) memory being consumed. In a traditional programming
model, when a thread blocks, then all the memory is stuck
with the thread, until the paging daemon kicks it out. So,
effectively, many threads doing recursive calls can consume
a lot of memory and force memory pressure to occur in the
system i.e. system slows down.
Kernel Space program: stack depth
---------------------------------
A kernel stack is fixed in size i.e. 8K or 16K usually. And
this stack does not grow dynamically in most OSes. So,
there is a bound on how much memory can be used for the
kernel stack, unlike user programs. But, this bound on the
stack size is the reason why recursion is discouraged. More
recursive levels can lead to a stack overflow and this will
panic the box. One might say: hey, my recursive depth is
only 10. But, what is unknown is what amount of kernel
stack is already used up && the stack frame consumption
depends on the chip architecture that is being used.
For both of the above reasons, recursion is avoided in
general kernel programming.
Is This Answer Correct ? | 20 Yes | 12 No |
Answer / nishu
disadvantage:
Recursive procedures are huge memory hogs. Also, they're a
nightmare to debug. Finally, it's pretty rare to find an
application that actually needs recursion as opposed to a
simpler, more friendly methodolgy.
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / gadadhar dutta
Disadvantage of recursion
1. It is requires extra storage space. The recursive calls and automatic variable a stored on the stack. For every calls separate memory is allocated to automatic variable with the same name.
2. the recursion function is not efficient in execution speed and time.
3. Some function called inside recursion are repeated or duplicated just like Fibonacci.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / swapna
advantages ;
recursive functions can be effectively used to solve
problems where the solution is expressed in terms of
applying the same solution.
disadvantages ;
in recursive we must have an if statement somewhere to
force the func. to return without the recursive call being
executed.otherwise the funct. will never return.
Is This Answer Correct ? | 22 Yes | 36 No |
What are volatile variables?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
what is the role you expect in software industry?
What is a method in c?
How can I find out how much memory is available?
Please list all the unary and binary operators in C.
What are the different flags in C? And how they are useful? And give example for each in different consequences?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
program for validity of triangle from 3 side
Why n++ execute faster than n+1 ?
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
What are identifiers and keywords in c?