ple.. briefly describe the purpose of having a base case and
a recursive case in a recursive algorithm

Answers were Sorted based on User's Feedback



ple.. briefly describe the purpose of having a base case and a recursive case in a recursive algori..

Answer / arka

Lets assume factorial function defined recursively:
int fact(int n)
{
if(n==0||n==1)
return(1); //base case
else
return(n*fact(n-1)); //recursive case
}
the necessity for recursive case is simply recursion
whereas the base case is needed to terminate the recursion.
eg:fact(4)=>4*fact(3)=>4*3*fact(2)=>4*3*2*fact(1)=4*3*2*1.
for fact(1) hte base case is satisfied and the function
fact is not called again.

Is This Answer Correct ?    15 Yes 0 No

ple.. briefly describe the purpose of having a base case and a recursive case in a recursive algori..

Answer / baskar

In recursive algorithm.
1. Base case gives the condition for recursive algorithm
when the recursive call is stop.
2.recursive case vice versa.

Is This Answer Correct ?    6 Yes 0 No

Post New Answer

More Data Structures Interview Questions

What do you mean by recursive definition?

0 Answers  


Define data type and what are the types of data type?

0 Answers  


What is doubly linked list?

0 Answers  


What is the difference between linked list and array?

0 Answers  


What is bubble sort with example?

0 Answers  


How does dynamic memory allocation help in managing data?

0 Answers  


What are data structures in programming?

0 Answers  


Write the algorithm for converting infix expression to postfix expression?

0 Answers  


Which is the parent class of linkedlist class?

0 Answers  


When would you use a tuple?

0 Answers  


What do you mean by hash function?

0 Answers  


State the rules to be followed during infix to postfix conversions?

0 Answers  


Categories