Basic operation
Concept
T
(
n
)
=
C
o
p
C
(
n
)
T(n)=C_{op}C(n)
T(n)=CopC(n)
T(n):running time
C
o
p
C_{op}
Cop:execution time for basic operation
C(n):number of times basic operation is executed
Thus,We only consider C(n)
Examples
Basic operation:
排序基本操作:比较
矩阵乘法基本操作:乘法
多项式求值的基本操作:乘法
递归结构分析
Master定理
习题
根据主定理,四个时间复杂度分别是:
O(N)
O(N^2)
O(logN)
O(NlogN)