60. Which of the following statement about sorting algorithm is not true?
(A) A sorting algorithm puts elements of a list into an order
(B) For Quick sort, the average complexity is n logn to sort n elements
(C) For Bubble sort, the average complexity is n
2 to sort n elements
(D) For Insertion sort, the average complexity is n
2 to sort n elements
(E) For Selection sort, the average complexity is n log n to sort n elements
詳解 (共 1 筆)
未解鎖
1. 題目解析 這道題目要求我們找出有...