Feb 16
Discuss the material in the recursion chapter, including the base conversion, recursive fractals, making change problem, fibonnaci, and memoization.
The last concept in the chapter - dynamic programming - is a topic that we may come back to but will skip for now, except to mention what it is.
The two versions of fibonnaci that we did in class (one with memoization, one without) are posted. We showed that f(100) for example is too slow to finish with the stupid one, but fast with the memoized one.