Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
courses:cs211:winter2012:journals:garrett:entries:week_10 [2012/04/04 03:24] – created garrettheath4 | courses:cs211:winter2012:journals:garrett:entries:week_10 [2012/04/04 05:55] (current) – 7.7 garrettheath4 | ||
---|---|---|---|
Line 2: | Line 2: | ||
===== Chapter Scores ===== | ===== Chapter Scores ===== | ||
- | | **Readability Score** | FIXME / 10 | {{: | + | | **Readability Score** | 8 / 10 | {{: |
- | | **Interest Score** | FIXME / 10 | {{: | + | | **Interest Score** | 9 / 10 | {{: |
===== Readings ===== | ===== Readings ===== | ||
==== Chapter 7: Network Flow ==== | ==== Chapter 7: Network Flow ==== | ||
=== 7.1: The Maximum-Flow Problem and the Ford-Fulkerson Algorithm === | === 7.1: The Maximum-Flow Problem and the Ford-Fulkerson Algorithm === | ||
- | FIXME | + | A **flow network** is a specific kind of graph that has a node that is the source of some sort of traffic, directed edges indicating the maximum amount of allowed traffic between two nodes, and a node that is the destination of all of the traffic. |
+ | Given a problem that can be modeled with a flow network, we typically want to find the maximum flow of the graph. | ||
- | === 7.2: === | ||
- | FIXME | ||
+ | === 7.2: Maximum Flows and Minimum Cuts in a Network === | ||
+ | When finding the maximum flow of a network flow graph, it is useful to find the bottleneck of the graph to know the best-case of flow. This is done by considering the nodes in the graph to be separated into two major groups, called a **cut**, and summing up all of the edge capacities between the two groups. | ||
- | === 7.5: === | ||
- | FIXME | ||
+ | === 7.5: The Bipartite Matching Problem === | ||
+ | A **bipartite graph** is a graph in which there are two sets of nodes, or " | ||
- | === 7.7: === | + | The bipartite **matching problem** is a problem of finding the largest set of edges with distinct endpoints in a bipartite graph. |
- | FIXME | + | |
+ | === 7.7: Extensions to the Maximum-Flow Problem === | ||
+ | There are a lot of interesting problems that are based on the maximum-flow problem. | ||
- | ~~DISCUSSION~~ | + | Another problem is a network flow in which each edge has a lower bound in addition to its usual upper bound (capacity). |
+ | |||
+ | ~~DISCUSSION~~ | ||