πŸ“Š Design and Analysis of Algorithms
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!)
πŸ’¬ Discuss
βœ… Correct Answer: (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.


Explanation by: Mr. Dubey
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.

πŸ’¬ Discussion

πŸ“Š Question Analytics

πŸ‘οΈ
184
Total Visits
πŸ“½οΈ
3 y ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
93%
Success Rate