下列程序段的时间复杂度是
x=n;y=0;
while(x > =(y+1)*(y+1))
y=y+1;
下列程序段的时间复杂度是
x=n;y=0;
while(x > =(y+1)*(y+1))
y=y+1;
A、O(n)
B、
C、O(n²-1)
D、O(n²)
【正确答案】:B
Top