Home / Engineering / Design and Analysis of Algorithms / Question

M

Mr. Dubey • 51.47K Points
Coach

Q.) What is the average case complexity of a quick hull algorithm?

(A) o(n)
(B) o(n log n)
(C) o(n2)
(D) o(log n)
Correct answer : Option (B) - o(n log n)

Explanation:
 the average case complexity of quickhull algorithm using divide and conquer approach is mathematically found to be o(n log n).

Share

Discusssion

Login to discuss.