Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
courses:cs211:winter2012:journals:garrett:entries:week_1 [2012/01/18 01:56] – garrettheath4 | courses:cs211:winter2012:journals:garrett:entries:week_1 [2012/03/07 03:45] (current) – enabled discussion garrettheath4 | ||
---|---|---|---|
Line 5: | Line 5: | ||
==== Chapter 1: Introduction: | ==== Chapter 1: Introduction: | ||
- | FIXME | + | === The Stable Matching Problem === |
+ | Gale and Shapeley developed an algorithm to solve the Stable Matching Problem, typically referred to as the **Stable Marriage Problem**. | ||
+ | === Five Representative Problems === | ||
+ | As we continue to learn about Algorithms, we will come across five main problem themes: | ||
+ | - Interval Scheduling Problem | ||
+ | - Weighted Interval Scheduling Problem | ||
+ | - Bipartite Matching Problem | ||
+ | - Independent Set Problem | ||
+ | - Competitive Facility Location Problem | ||
+ | |||
+ | The **Interval Scheduling Problem** is about choosing which ones of potentially many schedule requests to confirm for a given set of time such that as many schedule requests are fulfilled as possible. | ||
+ | The **Weighted Interval Scheduling Problem** is just like the //Interval Scheduling Problem// except that each schedule request has a " | ||
+ | The **Bipartite Matching Problem** is a type of problem where a relationship needs to be established between some or all of the elements in two distinct sets, such as the //Stable Marriage Problem//. | ||
+ | The **Independent Set Problem** is that given a //graph// of vertices and their respective edges, find the largest subset of vertices in which no two vertices are directly connected by an edge. | ||
+ | The **Competitive Facility Location Problem** is a problem where two competing sets are trying to claim weighted nodes on a graph that are not adjacent to nodes already claimed by the other set. | ||
==== Chapter 2: Basics of Algorithm Analysis ==== | ==== Chapter 2: Basics of Algorithm Analysis ==== | ||
- | FIXME | + | === Computational Tractability === |
+ | It is difficult to define efficiency, much less determine if a given algorithm is efficient or not. It may be tempting to just compare an algorithm' | ||
+ | |||
+ | === Asymptotic Order of Growth === | ||
+ | If we are analyzing the time behavior of an algorithm, it would be nice if we could provide some useful general characteristics about it that could be used to relate to other algorithms with a similar time behavior. | ||
+ | |||
+ | |||
+ | |||
+ | ~~DISCUSSION~~ |