Week 11: Recursion

Announcements

  • Lab 9 is available now.

Week 11 Topics

  • Recursion

  • Iteration vs recursion

  • Base case

  • Recursive case

  • Recursion on lists and strings

  • (time permitting) Recursion using Graphics

Monday

Recursion

NestingDolls

Any function that sometimes calls itself is known as a recursive function. In most cases, recursion can be considered an alternative to iteration (loops). Instead of defining a loop structure, recursion defines a problem as a smaller problem until it reaches an end point. There are three requirements for a successful recursive function:

  1. Base case: each function must have one or more base cases where the function does not make a recursive call to itself. Instead, the problem has reached its smallest point, and we can begin returning back the small solutions.

  2. Recursive case: the function makes one (or more) calls to itself. The call must use a different argument to the function (or else we keep making the same recursive call over and over again!). Typically, the problem gets 1 smaller.

  3. All possible recursive calls must be guaranteed to hit a base case. If you miss one, your program is susceptible to an infinite recursion bug!

Example: Print a Message

The printmessage.py program prints a given message n times. We’ve already seen how to solve this problem with a loop, but let’s explore how we can solve it without a loop using recursion. To understand what’s happening with recursion, it’s often helpful to draw a stack diagram. The key concept is that Python treats the recursive function call the same as any other function call — it places a new stack frame on top and begins executing the new function. The only difference is the function in this case has the same name.

Example: Summing Integers

We are going to write some iterative and recursive versions of the same function. Iterative versions use loops, recursive versions do not use loops, and instead contain calls to themselves but on a smaller problem. I’ve given you the code for an algorithm we have seen before — a for loop that sums all integers between 1 and n:

def iterativeSum(n):
    total = 0
    for i in range(n):
        total = total + (i+1)
    return total

Together, we’ll write a recursive function that accomplishes the same task.

Tips for Recursion

For any recursive problem, think of these questions:

  1. What is the base case? In what instances is the problem small enough that we can solve the problem directly? Sometimes you may need more than one base case, but rarely do you need several.

  2. What is the recursive call? Make one or calls in the function to itself. It is very important to use different arguments (usually "smaller") in the recursive call otherwise you obtain infinite recursion.

  3. Do all possible chains of recursion lead to a base case?

  4. If a recursive function is supposed to return a value, make sure all cases return a value and that recursive calls do something with the return value of the smaller problem before returning.

Exercise: Factorial

Recall the iterative version (using a loop) of factorial that takes a positive int value, n, and returns the product of the first n integers. Try writing a recursive version of the factorial function in factorial.py.

Exercise: Interpret a Recursive Function

Open countdown.py, and working with a neighbor, do the following:

  • Explain the program to your neighbor.

  • What is the recursive function doing?

  • Identify the base vs recursive case?

  • Are you sure that all recursive calls eventually hit the base case?

  • Assuming the user inputs 4, draw a stack diagram at the time the program prints "blastoff".

Exercise: Reversing a List

Next, we’ll use recursion to work with lists. In listReverse.py, write a function that takes in a list and returns a new list that contains the input list’s items in reverse order.