Digging Down Data Structures

Recursion and Recursive Function

Recursion is a useful technique of mathematics, that also become an integral part of Computer science. Recursive code is generally shorter and easier to write than iterative code.

Format of Recursion

A recursive function performs a task in part by calling itself to perform the sub tasks.

No comments:

Post a Comment