Skip to content

Latest commit

 

History

History
61 lines (37 loc) · 813 Bytes

recursion.md

File metadata and controls

61 lines (37 loc) · 813 Bytes

Recursion


Objectives

  • Explain what a recursive function is
  • Explain how to stop
  • I do, we do, you do more 😄

What is a Recursive Function?


it is a function that calls itself


How do you STOP?


Know your exit condition!

a.k.a your base case.


Same function

Different Data


For Example


Factorial

  • 5!
  • 5 * 4!
  • 5 * 4 * 3!
  • 5 * 4 * 3 * 2!
  • 5 * 4 * 3 * 2 * 1

I'll Show You

99 bottles


You Try It

Factorial Function


More Recursion