Category:Divide and Conquer
From charlesreid1
Algorithm technique, closely related to Recursion, in which a larger problem is sub-divided into smaller problems. In the process of shrinking the problem, the problem must become easier - enough to balance the work of splitting and merging.
The Master Theorem is a theorem used to translate a recurrence relation like
$ T(n) = a T \left( \frac{n}{b} \right) + f(n) $
into a complexity class.
Pages in category "Divide and Conquer"
This category contains only the following page.