Better Programming

Advice for programmers.

Follow publication

Member-only story

Understanding Recursion With Examples

Diana Bernardo
Better Programming
Published in
4 min readAug 7, 2020

Photo by Josip I. on Unsplash.

What is recursion?

Open a browser and type “recursion” on Google. Did you notice the “Did you mean: recursion” message?

Photo by author. Screenshot of Google.

Click on that message. It will appear again. Click again. There it is again. Click it… OK, enough.

You’re now beginning to understand what recursion is. If you scroll down on that very same Google page, you will see this:

“Recursion: the repeated application of a recursive procedure or definition.”

Even recursion’s own definition is recursive.

Recursion in Programming

In programming terms, recursion happens when a function calls itself.

If you have a problem that is too complex, you can use recursion to break it down into simpler blocks. You do this in real life all the time. Imagine you have a whole box full of $100 bills and you need to count how much money you have. Since it’s a lot, you might ask for the help of your friend, and you divide the stack in two. When you both finish counting, you add up your results and get the final number.

It would be the exact same total if only one of you counted it all — you just took a different road. In programming, this road is called recursion, and the alternative road is called iteration.

So when should you use one or the other?

Why Use Recursion?

Recursion is preferred when the problem can be broken down into smaller, repetitive tasks. These are the advantages of using recursion:

  1. Complex tasks can be broken down into simpler problems.
  2. Code using recursion is usually shorter and more elegant.
  3. Sequence generation is cleaner with recursion than with iteration.

But you should not use recursion every time just because it is possible to do so.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Responses (2)

Write a response