technojam/Ultimate_Algorithms_Repository

Strassen’s Matrix Multiplication

Ouverte

#306 ouverte le 14 oct. 2020

 (1 commentaire) (0 réaction) (0 personne assignée)C++ (165 forks)auto 404
hacktoberfest

Métriques du dépôt

Stars
 (87 étoiles)
Métriques de merge PR
 (Métriques PR en attente)

Description

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.

Guide contributeur