Algorithm-2

算法与复杂性相关笔记。 分治

Chapter 2. Divide-and-Conquer Algorithms

Recurrence relations

Master theorem:

for some constants (a>0) , (b>1) ,and (d ≥0) , then

d代表非递归部分(即每次递归调用之外的操作)的时间复杂度的指数。

Example: 整数乘法的分治算法