该代码块的时间复杂度是多少?

时间:2019-06-14 04:59:29

标签: algorithm time-complexity

如何计算时间复杂度?

While(n>0)
      For j in n
          Count+=1
      n = n/2

1 个答案:

答案 0 :(得分:9)

O(n)。

n + n / 2 + n / 4 + ... = 2n = O(n)