複選題
8. Let T(n) denote the time taken to sort a list of n records. Which of the following statements are false for QuickSort?
(A) T(n) = 2T(n/2) + cn for some constant c in the worst-case scenario.
(B) T(n) = 4T(n/4) + cn for some constant c in the worst-case scenario.
(C) T(n) = T(n-1) + cn for some constant c in the worst-case scenario.
(D) T(n) = 2T(n-2) + cn for some constant c in the best-case scenario. 

答案:登入後查看
統計: A(0), B(0), C(1), D(1), E(0) #2855515

詳解 (共 1 筆)

#5455751
(A)錯誤,worst case應為T(...
(共 107 字,隱藏中)
前往觀看
0
0