InterviewSolution
Saved Bookmarks
| 1. |
What is the time complexity of matrix multiplied recursively by Divide and Conquer Method?(a) O(n)(b) O(n^2)(c) O(n^3)(d) O(n!)I got this question by my school principal while I was bunking the class.This interesting question is from Recursion topic in section Recursion of Data Structures & Algorithms II |
|
Answer» Correct option is (c) O(n^3) |
|