what is recursion?
a function that calls on itself
it has a terminating/base case
it also has a general case
how do you convert a recursive algorithm to an iterative algorithm?
what are the advantages of recursive algorithms?
what are some disadvantages of recursive algorithms?
how can you trace through a recursive algorithm?
What are some examples of recursive algorithms?