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_10 [2012/04/04 05:26] – 7.1 garrettheath4 | courses:cs211:winter2012:journals:garrett:entries:week_10 [2012/04/04 05:55] (current) – 7.7 garrettheath4 | ||
---|---|---|---|
Line 9: | Line 9: | ||
=== 7.1: The Maximum-Flow Problem and the Ford-Fulkerson Algorithm === | === 7.1: The Maximum-Flow Problem and the Ford-Fulkerson Algorithm === | ||
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. | 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: Maximum Flows and Minimum Cuts in a Network === | === 7.2: Maximum Flows and Minimum Cuts in a Network === | ||
- | FIXME | + | 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: The Bipartite Matching Problem === | === 7.5: The Bipartite Matching Problem === | ||
- | FIXME | + | A **bipartite graph** is a graph in which there are two sets of nodes, or " |
+ | |||
+ | The bipartite **matching problem** is a problem of finding the largest set of edges with distinct endpoints in a bipartite graph. | ||
=== 7.7: Extensions to the Maximum-Flow Problem === | === 7.7: Extensions to the Maximum-Flow Problem === | ||
- | FIXME | + | There are a lot of interesting problems that are based on the maximum-flow problem. |
+ | Another problem is a network flow in which each edge has a lower bound in addition to its usual upper bound (capacity). | ||
- | |||
- | ~~DISCUSSION~~ | ||
+ | ~~DISCUSSION~~ | ||