Review for Written Test 2
San Skulrattanakulchai
November 11, 2016
Recursion
- You should be able to
- translate methods with loops into a recursive one
- implement recursive algorithms
- Programs you need to know
- print integers in base k (2 ≤ k ≤ 10)
- Towers of Hanoi puzzle
Dynamic Programming
- You should know about how to solve these problems in detail.
- Fibonacci numbers
- Binomial coefficients
- Longest Common Subsequence
Implementation of Dynamic Programming