Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
courses:cs211:winter2012:journals:garrett:entries:week_9 [2012/03/28 03:08] – created garrettheath4 | courses:cs211:winter2012:journals:garrett:entries:week_9 [2012/03/28 04:04] (current) – made ratings a table garrettheath4 | ||
---|---|---|---|
Line 2: | Line 2: | ||
===== Chapter Scores ===== | ===== Chapter Scores ===== | ||
- | * **Readability Score**: FIXME / 10 {{: | + | | **Readability Score** |
- | | + | | |
===== Readings ===== | ===== Readings ===== | ||
==== Chapter 6: Dynamic Programming ==== | ==== Chapter 6: Dynamic Programming ==== | ||
=== 6.1: Weighted Interval Scheduling === | === 6.1: Weighted Interval Scheduling === | ||
+ | The weighted interval scheduling problem is a lot like the unweighted interval scheduling problem except that each task to be scheduled has a priority or weight to it and we want to schedule jobs such that we have the largest possible weight. | ||
=== 6.2: Memoization or Iteration over Subproblems === | === 6.2: Memoization or Iteration over Subproblems === | ||
+ | We use recursion all the time without even thinking about it. Sometimes, however, we do more work than we have to when we come across the same call in different recursive call branches of execution. | ||
+ | Instead of memoization, | ||
=== 6.3: Segmented Least Squares === | === 6.3: Segmented Least Squares === | ||
+ | Given a plot of points on an xy-plane, find the segments of best fit that minimizes the function. | ||
+ | To find the solution, our insight is that if we iterate through the points (starting at the last point((The " | ||
=== 6.4: Subset Sums and Knapsacks === | === 6.4: Subset Sums and Knapsacks === | ||
+ | The **knapsack problem** is a problem in which we have '' | ||
+ | We go about solving this problem much like we did with the weighted interval scheduling problem in that we have to make a **binary** decision to include an item in the solution or not. Unlike weighted interval scheduling, however, items with equal or less weight do not conflict with each other, so we can't stop our algorithm just because we choose an item, we have to keep going to make sure we consider all reasonable combinations. | ||
Line 27: | Line 31: | ||
~~DISCUSSION~~ | ~~DISCUSSION~~ | ||
- | |||