(36) What is the runtime overhead of a divide-and-conquer algorithm that recursively processes two equal halves of a problem that each have an overhead of O(n)?
(A)O(n log n)
(B)O(log n)
(C)O(n2)
(D)O(n3)
(E)O(n)
詳解 (共 1 筆)
未解鎖
1. 題目解析 這道題目考察的是分治算法...