注意:此页面搜索的是所有试题
下面程序段的时间复杂度是( )。
i=s=0;
while (s<n){
i++;
s+=i;
}
A.O(n0.5) B. O(log2n) C. O(n) D.O(1)

参考答案