N Log N
function:
.
recurrence:
T
(1) = 1,
T
(
n
) =
n
+ 2
T
(
n
/2)
context: Scan, divide, recurse on both halves.
examples: Sorting, Fast Fourier Transform.
variations:
.
Next:
MASTER METHOD
Up:
CATALOG OF RECURRENCES
Previous:
Exponential