下面算法的时间复杂度为()A.O(1)B.O(n)C.O(n*n)D.O(n!)

下面算法的时间复杂度为()

A.O(1)

B.O(n)

C.O(n*n)

D.O(n!)


相关考题:

下面程序段的时间复杂度为()。A.O(n)B.O(n2)C.O(1)D.O(nlog2n)

下面算法的时间复杂度为(34)。 int f(unsigned int n){ if(n=0||n==1)return 1; else return n*f(n-1); }A.O(1)B.O(n)C.O(n2)D.O(n!)

下面程序中算法的时间复杂度是()A.O(n)B.O(n^2)C.O(logn)D.O(n*logn)

在用邻接表表示图时,拓扑排序算法时间复杂度为()。A.O(n)B.O(n+e)C.O(n*n)D.O(n*n*n)

AGNES算法的时间复杂度?A.O(n^2)B.O(n)C.O(e^n)D.O(1)

下面算法的时间复杂度为()。 x=100; y=100; while(y>0) if(x>100) {x=x-10; y--;} else x++;A.O(n)B.O(100)C.O(1)D.O(n*n)

下面算法的时间复杂度为() int f(unsigned int n) { if (n==0||n==1) return 1; else return n*f(n-1); }A.O(1)B.O(n*n)C.O(n)D.O(n!)

【单选题】求解最短路径的Floyd算法的时间复杂度为()。A.O(n)B.O(n+c)C.O(n*n)D.O(n*n*n)

查找顺序表第i个元素的操作算法,其时间复杂度为()。A.O(1)B.O(n)C.O(log(n))D.O(n*n)