Big O notation — while loops + for loops

前端 未结 0 1103
有刺的猬
有刺的猬 2021-01-20 07:10

How do I find big O notation for this algorithm?

Find Base(N,B)   // N>=1 and B>=2
    index <- 0
    while N > 0 do
       A[index] <- N % B
          


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