直接选择排序的时间复杂度为()。(n为元素个数)
A.O(n)
B.O(log2n)
C.O(nlog2n)
D.O(n2)
第1题:
对n个元素进行堆排序时,最坏情况下的时间复杂度为(53)。
A.O(log2n)
B.O(n)
C.O(nlog2n)
D.O(n2)
第2题:
堆排序平均执行的时间复杂度()
A.O(n)
B.O(nlog2n)
C.O(log2n)
D.O(n2)
第3题:
【单选题】在对n个元素进行堆排序的过程中,空间复杂度为()。
A.O(1)
B.O(log2n)
C.O(n2)
D.O(nlog2n)
第4题:
对n个元素进行快速排序时,最坏情况下的时间复杂度为______。
A.O(log2n)
B.O(n)
C.O(nlog2n)
D.O(n2)
第5题:
对n个元素进行直接插入排序时间复杂度为()。 A. O(1) B. O(n) C. O(n2) D. O(log2n)