This is an old revision of the document!


Week 9

Chapter Scores

  • Readability Score: FIXME / 10
  • Interest Score: FIXME / 10

Readings

Chapter 6: Dynamic Programming

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. With so many variables and components to consider and take into account, a greedy algorithm isn't enough. We need something that is more powerful than greedy algorithms but more efficient than brute-force algorithms.

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 recomputing those results, we can use memoization to remember the value of previously calculated results.

6.3: Segmented Least Squares

6.4: Subset Sums and Knapsacks

You could leave a comment if you were logged in.
courses/cs211/winter2012/journals/garrett/entries/week_9.1332904826.txt.gz · Last modified: 2012/03/28 03:20 by garrettheath4
CC Attribution-Noncommercial-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0