Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
courses:cs211:winter2012:journals:virginia:chapter1 [2012/01/11 05:08] – lovellv | courses:cs211:winter2012:journals:virginia:chapter1 [2012/01/23 21:38] (current) – [Section 1: Stable Matching] lovellv | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Chapter 1 ====== | ====== Chapter 1 ====== | ||
- | My notes on Chapter 1 readings | ||
===== Section 1: Stable Matching ===== | ===== Section 1: Stable Matching ===== | ||
- | * Summary of this section | + | In this section, our goal is to find an algorithm that generates a perfect, stable matching between n men and n women. |
- | * Insights I have | + | |
- | * The questions I have | + | Algorithm outline (p 6): Pick a random man and have him propose to his top choice who he has not yet proposed to. This woman will accept if single or if this man is preferred to her current mate. Otherwise he remains single. |
- | * How readable section was | + | |
+ | We found the maximum number of iterations for this algorithm is n^2 and that each execution produces the same set of pairs. | ||
+ | |||
+ | Readability: | ||
+ | |||
+ | |||
+ | ===== Section 2: Five Representative Problems ===== | ||
+ | |||
+ | Now that we've solved the Stable Matching Problem, we have an idea of how the process of algorithm design works. | ||
+ | |||
+ | Here are some problems representing the different types we will encounter later. | ||
+ | |||
+ | * Interval Scheduling (Greedy Algorithms): | ||
+ | * Weighted Interval Scheduling (Dynamic Programming): | ||
+ | * Bipartite Matching (Augmentation/ | ||
+ | * Independent Set (No efficient algorithm): Given a graph, how can we find an independent set that is as large as possible? | ||
+ | * Competitive Facility Location (No efficient algorithm, difficult to check a solution): In the game of selecting nodes, all selected nodes must form an independent set and P1 starts. | ||
+ | |||
+ | Readability: |