What is the Big-O and exact runtime

后端 未结 0 433
我在风中等你
我在风中等你 2020-12-13 19:13
def alg 3(n)
  x = 0
  i = 1
  while i < n:
     for j in range(0, n**3,n*3): 
        x += 1
     i *= 3 
  return x 

I don\'t really get the Bi

相关标签:
回答
  • 消灭零回复
提交回复
热议问题