Designing Recursive Functions
Here are some guidelines for designing recursive functions:
- Write a clear definition of what your function should do.
Write this definition as a comment above the function code.
- Identify one or more base cases:
simple inputs for which
the answer is obvious and can be determined immediately.
- Identify the recursive case: an input
other than the base case.
How can the answer be expressed in terms of the present input and
the answer provided by this function (assuming it works as desired)
for a smaller input?
Contents   
Page-10   
Prev   
Next   
Page+10   
Index