Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
courses:cs211:winter2014:journals:johanna:home [2014/03/26 01:17] – goergenj | courses:cs211:winter2014:journals:johanna:home [2014/04/02 21:34] (current) – goergenj | ||
---|---|---|---|
Line 176: | Line 176: | ||
* In order to solve for Opt(n), we will need to find out the value for Opt(n-1) and the Opt() of all subsets of the first n-1 items. Thus, we will use a 2D array to store the values for the optimal value in the bag per weight per num items added for each subset. This is a version of the memoization we used in previous algorithms to allow us not to have to recalculate and help us easily make comparisons throughout the algorithm. | * In order to solve for Opt(n), we will need to find out the value for Opt(n-1) and the Opt() of all subsets of the first n-1 items. Thus, we will use a 2D array to store the values for the optimal value in the bag per weight per num items added for each subset. This is a version of the memoization we used in previous algorithms to allow us not to have to recalculate and help us easily make comparisons throughout the algorithm. | ||
+ | |||
+ | ====== Chapter 7.1 Summary ====== | ||
+ | * This section deals with flow networks. These are networks that model traffic through " | ||
+ | * The residual graph is a tool we will use to implement an algorithm to solve the maximum-flow problem. The residual graph contains the same nodes as our original graph but its edges are different. Each forward edge (u,v) has a capacity of c< | ||
+ | * The augment function defined on page 342 traverses a path P turning it into a simple residual graph by decreasing the remaining capacity of each edge by bottleneck(P, | ||
+ | * Then the Ford-Fulkerson Algorithm uses this augment function and creates an entire residual graph and then uses it to calculate the maximum flow. It does so by running the augment function on every s-t path in the residual graph. | ||
+ | |||
+ | ====== Chapter 7.2 Summary ====== | ||
+ | * We will now use the fact that cuts provide very natural upper bounds on the values of flows. This is since the capacity of a cut (A,B) is the sum of capacities on all edges out of A. Then we will prove that v(f)= f< | ||
+ | * This helps us come to the conclusion that the maximum flow in the maximum-flow problem is equal to the minimum cut. |