Thursday, June 27, 2013

What do you mean by recursion?



Defining something in term of itself is called recursion. In programming approaches recursion is experienced when a function call itself. It is referred to as a ‘bug’ by most programmers. They are highly logical and work effective when used. The recursive functions enable to perform heavy weight computations in just few lengths of programming codes. Every recursive algorithm consist of two parts: the first part is the base case which is also referred to as a stopping condition and the second part is the recursive case which specifies the rule of binding each iteration of the solution in recursive way.

No comments:

Post a Comment