InterviewSolution
Saved Bookmarks
| 1. |
What is the recurrence relation used in Strassen’s algorithm?(a) 7T(n/2) + Theta(n^2)(b) 8T(n/2) + Theta(n^2)(c) 7T(n/2) + O(n^2)(d) 8T(n/2) + O(n^2)This question was addressed to me during an interview for a job.My enquiry is from Number Theory in division Number Theory of Data Structures & Algorithms II |
|
Answer» Right choice is (a) 7T(n/2) + Theta(n^2) |
|