InterviewSolution
Saved Bookmarks
| 1. |
What is the time complexity of matrix multiplied recursively by Strassen’s Method?(a) O(n^log7)(b) O(n^2)(c) O(n^3)(d) O(n!)This question was posed to me during an online exam.This interesting question is from Recursion topic in division Recursion of Data Structures & Algorithms II |
|
Answer» The correct option is (a) O(n^log7) |
|