DEV Community

Cover image for Iterating with recursion
Daniel Brady
Daniel Brady

Posted on

Iterating with recursion

Cover photo by Ludde Lorentz on Unsplash

How many stairs are in a staircase?

You're walking along, thinking about dinner. Should I have ramen or udon? you ask yourself.

❗ A wild staircase appears!

Thoughts of noodles recede from your mind as you consider this new development in staircase behavior, which may be worthy of a Nat Geo special.

The staircase is not too tall; you can't tell exactly how many steps there are, but you're pretty confident you can conquer them.

But...how can you be sure?

You've climbed hundreds, if not thousands, of steps in your lifetime, enough that this new set shouldn't be a problem. The secret, you know, is twofold:

  1. Know when to stop.
  2. Take the next step.

And you really can't climb a staircase and emerge unscathed without knowing this secret.

You recall a time when you continued to think about noodles while trying to ascend a staircase, and tripped: you'd made a mistake taking the next step.

You also recall, during this very same ascension, how it felt when you reached the top but kept on climbing because you were still weighing your noodle options: your foot came down hard and you pitched forward, nearly falling flat on your face. You'd momentarily forgotten the other secret of climbing stairs: knowing when to stop.

Staircase climbing algorithm

You eye the stairs before you, and, driven by the need to know just how many there are, you make the only reasonable decision: you clear your mind of noodles, and take the first step.

Confidence in your ability to conquer any flight of stairs, even if you've never done it, seems valuable to you in your future as a human.

But how do you incorporate counting into it? πŸ€”

It's simple, you realize: you merely keep a tally of the stairs you've stepped as you climb. The length of a staircase can thus be described as the value of the first stair, plus the length of the rest of the staircase.

Recursive summation

If you've reached the top, you stop climbing, and thus stop counting. Otherwise, you can focus on stepping and summing, and wait to evaluate the tally you've kept until you've stopped.

Staircase counting algorithm

Smiling and slightly winded, you reach the top and look at how far you've come. Full of the glow of victory, you wonder at the power of this simple algorithm. Your smile fades to a frown, however, as you remember a more pressing concern: what bowl of noodles should you have for dinner?


This approach to solving problems that can be broken down into a sequence of similar steps, where

  • you do something at every step
  • you know how to get to the next step, and
  • you know how to determine if you should stop stepping

is fundamental in computing science and every-day programming.

Iteration, that's what we've landed on. Doing things over and over until a particular goal is reached.

The example functions I used to illustrate the story above implemented iteration in a recursive fashion.

Recursive functions are the simplest form of programatic iteration: they are functions designed to deconstruct a problem into a linear computation of its pieces, and then evaluate it as a whole.

Thinking about it so formally can get a bit confusing. I find it easiest to grok by reading a simple recursive function aloud. Revisiting our #count-stairs example:

Staircase counting algorithm

This can be read in plain English as:

When counting the steps of a staircase, if you're at the top, stop counting.
Otherwise, add 1 to the result of counting the rest of the staircase.

Bit of a strange loop, to be sure; but note how each time we "count the rest" of the staircase, the amount of things we are counting is getting smaller until eventually, there's nothing left to count: we've reached the top.

Let's draw out an example computation to help us see this in action:

Computation diagram of recursively counting stairs

Quite elegant, no?

Readers may notice, especially after seeing the computation diagram above, that we're arriving at the final summation without tracking the intermediate results. Good eyes, dear reader. πŸ‘

As we've seen, this style of recursion approaches a problem wholistically and lazily: it views the solution to a problem as an aggregation of the solution to its parts, and thus doesn't compute the whole solution until it has broken it down fully.

But what happens if we fall off the stairs? What happens if we get too hungry, and need to abandon our climb in order to go eat noodles, but want to return to finish counting later? What happens if we want to text someone our current location, and tell them what step we're on?

In such situations, we care about partially computing results. At any given step, we may want to stop and reflect on how far we've come, beyond just asking "are we done yet?" And in these cases, the approach we've taken today may not be the best one for the job.

For this and other reasons, many programming languages give you access to loop constructs, and I'll talk more about those next time. πŸ‘‹


Every tool has its use. Some can make your code clearer to humans or clearer to machines, and some can strike a bit of balance between both.

"Good enough to work" should not be "good enough for you." Hold yourself to a higher standard: learn a little about a lot and a lot about a little, so that when the time comes to do something, you've got a fair idea of how to do it well.

Top comments (4)

Collapse
 
downey profile image
Tim Downey

❀ examples in Scheme πŸ™Œ

Collapse
 
daniel13rady profile image
Daniel Brady

I'm making clear communication a priority in my writing, and what better language to use when talking about recursion than that? πŸ˜„ There're no syntactic barriers to get in the way of the message.

Collapse
 
daniel13rady profile image
Daniel Brady

By the way @downey , I just discovered this tonight because internet. If you're a fan of Scheme and ze Lisps, you might enjoy it! I've added it to my evergrowing list of ways to occupy my time. πŸ“š

buildyourownlisp.com/

Collapse
 
downey profile image
Tim Downey

Haha, looks cool! I'll add it to the ever growing pile of things I want to do 😌

😭