From charlesreid1

Revision as of 09:11, 16 July 2017 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.

See Divide and Conquer

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.

Subcategories

This category has only the following subcategory.

Pages in category "Divide and Conquer"

This category contains only the following page.