渐近增长后的阶

时间:2019-03-02 13:46:37

标签: time-complexity big-o complexity-theory

我必须将此列表定为渐近增长。到目前为止,这是我想出的。

但是我不确定log(2 ^ n)放在哪里?

enter image description here

1 个答案:

答案 0 :(得分:1)

enter image description here

所以log(2 ^ n)= n * log(2)= n * const

const> 1 (log(2)),因此等效于O(n)

1^n < 3log2(2) < 8sqrt(n) < log(2^n) < n^(4/2) < 7n^3