technojam / Ultimate_Algorithms_Repository

This is a collection of Data Structures and Algorithms
83 stars 166 forks source link

Strassen’s Matrix Multiplication #306

Open manan2110 opened 4 years ago

manan2110 commented 4 years ago

Title or Name of the Algorithm:- Strassen’s Matrix Multiplication

Describe the algorithm:- In the divide and conquer method of multipying matrices , the main component for high time complexity is 8 recursive calls. The idea of Strassen’s method is to reduce the number of recursive calls to 7.

Abhishek-7017 commented 4 years ago

Please assign me this problem i can solve it