deterministic algorithms
Min-cut implementation
Recursion:
|
pk + 1 |
= |
pk - |
|
|
qk |
= |
4/pk + 1 |
|
|
qk + 1 |
|
= qk + 1 + 1/qk |
|
Background
sampling theorem:
Recursive algorithm without boruvka:
T(m, n) = T(m/2, n) + O(m) + T(2n, n) = O(m + n log n)
(sloppy on expectation)
Recursive algorithm with 3 boruvka steps:

so set c = 2c1
Notes:
¬… Reliability
¬… Gabow's algorithm
¬… Sampling