What is Recursion?

Get introduced to the concept of recursion.

Introduction to recursion

Suppose you are standing in a line to buy a movie ticket. You want to know the price of the ticket, but only the first person in line knows the price.

You can approach the first person and ask him the price directly. However, if you leave the line, someone else will take your place. Therefore, you will have to use the following approach.

  • You will ask for the ticket price from the person in front of you.

  • That person does not want to leave the line either. Therefore, they will ask the same question from the person in front of them. This process will continue until the price is asked from the first person in the line.

  • The first person in line will tell the ticket price. After that, each person in line will know the ticket price through the person standing in front of them.

Get hands-on with 1200+ tech skills courses.