Home / Engineering / Design and Analysis of Algorithms / Question

M

Mr. Dubey • 51.43K Points
Coach

Q.) What is the time complexity of matrix multiplied recursively by Divide and Conquer Method?

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

Explanation:
 the time complexity of recursive multiplication of two square matrices by the divide and conquer method is found to be o(n3) since there are total of 8 recursive calls.

Share

Discusssion

Login to discuss.