What is Tabulation?
In this lesson, we will learn about a technique to store results of evaluated subproblems in bottom-up dynamic programming.
We'll cover the following...
Tabulation
As we discussed in the bottom-up approach, we start from the bottom, the smallest subproblem, or the base case. After evaluating the base case, we evaluate a slightly bigger problem and store its result. We continue doing this, i.e., build on the solution of smaller subproblems to evaluate bigger and bigger subproblems until we find the solution to our main problem.
In bottom-up dynamic programming, the process of storing results of ...