technojam/Ultimate_Algorithms_Repository

Strassen’s Matrix Multiplication

Offen

#306 geöffnet am 14.10.2020

 (1 Kommentar) (0 Reaktionen) (0 zugewiesene Personen)C++ (165 Forks)auto 404
hacktoberfest

Repository-Metriken

Stars
 (87 Sterne)
PR-Merge-Metriken
 (PR-Metriken ausstehend)

Beschreibung

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.

Contributor Guide