Ford-Fulkerson

From Algowiki
Revision as of 16:53, 30 September 2014 by JanR (talk | contribs) (Created page with "[[Category:Max-Flow] Category:Algortihms == General Information == '''Algorithmic problem:'''Max-Flow Problems '''Prerequisites:''' '''Type of algorithm:''' loop '''A...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

[[Category:Max-Flow]

General Information

Algorithmic problem:Max-Flow Problems Prerequisites: Type of algorithm: loop

Auxiliary data: A pointer p of type "pointer to a B-tree node".

Abstract View

Invariant: Before and after each iteration:

  1. p points to some node N of the B-tree and
  2. the searched key is in the range of N.

Variant: p is redirected from the current node N to some child of the current node.

Break condition:

  1. p points to a leaf of the B-tree or (that is, inclusive-or)
  2. the searched key is in the node to which p points.

Induction Basis

Abstract view: p is initialized so as to point to the root of the B-tree.

Implementation: Obvious.

Proof: Obvious.

Induction Step

Abstract view: Find a flow-augmenting path and increase [math]\displaystyle{ f }[/math] along this path by the maximal value such that the flow value of each [math]\displaystyle{ a\inA }[/math] remains in the interval . Implementation: Apply a graph traversal algorithm from as follows: if , can be used for going forward in the direction ; if , can be used for going forward in the direction . Terminate this graph traversal once either is seen or all reachable nodes were seen (whatever occurs first). In the latter case, the break condition of the loop applies. Otherwise, let denote the current path of the traversal (which is an -path in this case); let denote the minimum of the values on all forward arcs of ; let denote the minimum of the values on all backward arcs of . For each arc on , increase the flow value by if is a forward arc on , otherwise, decrease the flow value by . Correctness: If the graph traversal does not hit , the break condition is fulfilled, so nothing is to show. So consider the case that the graph traversal does hit . Then is an -path. By definition of and , the capacity constraints are preserved. To see that the flow conservation conditions are preserved as well, only the internal nodes of are relevant. Let be such an internal node, and let and denote the immediate predecessor and successor of on , respectively. Basically, there are four cases: Either is on as a forward arc or is on as a backward arc. Either is on as a forward arc or is on as a backward arc. It is easy to check preservation of the flow conservation conditions for each of these four cases. Correctness: Obvious.

Pseudocode

B-TREE-FIND(x,k)
1 i = 1
2 while i ≤ x.n and k > x.keyi 
3        i = i + 1
4 if ix.n and k == x.keyi 
5        return (x.i)
6 elseif  x.leaf
7        return NIL
8 else DISK-READ(x.ci) 
9        return B-TREE-FIND(x.ci,k)

Complexity

Statement: The asymptotic complexity is in [math]\displaystyle{ \Theta(\log n) }[/math] in the worst case.

Proof: Follows immediately from the fact that the height of B-tree with n nodes is in [math]\displaystyle{ \Theta(\log n) }[/math] (cf. the remark clause of the B-Trees page).