第26336题 单选
以下Python代码的时间复杂度是?
def func(n):
    i = 0
    while i * i * i < n:
        i += 1
A

O(1)

B

O(n)

C

O(∛n)

D

O(n²)

提交0次 正确率0.00%
答案解析