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. Every time the recursive function is called, we check the call against a memoization table. If there is no stored result for that call, we run the recursive call and store its result in the memoization table. If there is a stored result, simply return that instead of running the call again.

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.1332904955.txt.gz · Last modified: 2012/03/28 03:22 by garrettheath4
CC Attribution-Noncommercial-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0