Dynamic Programming
Dynamic Programming is an optimization technique using caching. At higher level, dynamic programming is a way to solve problems by breaking them down into a collection of sub-problems and solving each of these sub-problems just once and storing their solution for future use. One form of caching is memoization - a way to remember a solution to a solved problem.
We can reduce the time complexity of Fibonacci algorithm by using memorization.
Rules of using dynamic programming:
Can the problem be divided into sub-problems? Meaning recursive solution
Are there repetitive sub-problems? Memoize sub-problems
Last updated
Was this helpful?