forked from Amisha-here/Data-Structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStrassen-Equation
55 lines (43 loc) · 1.09 KB
/
Strassen-Equation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include<bits/stdc++.h>
using namespace std;
int main()
{
int mat[2][2],mat1[2][2];
map<char,int> mp;
char c='a';
cout<<"ENTER THE FIRST 2 x 2 MATRIX A\n";
for(int i=0;i<2;i++ )
for(int j=0;j<2;j++)
{cin>>mat[i][j];
mp[c]=mat[i][j];
c++;
}
cout<<"ENTER THE SECOND 2 x 2 MATRIX B\n";
for(int i=0;i<2;i++ )
for(int j=0;j<2;j++)
{ cin>>mat1[i][j];
mp[c]=mat1[i][j];
c++;
}
int p1,p2,p3,p4,p5,p6,p7;
p1=mp['a']*(mp['f']-mp['h']);
p2=(mp['a']+mp['b'])*mp['h'];
p3=(mp['c']+mp['d'])*mp['e'];
p4=mp['d']*(mp['g']-mp['e']);
p5=(mp['a']+mp['d'])*(mp['e']+mp['h']);
p6=(mp['b']-mp['d'])*(mp['g']+mp['h']);
p7=(mp['a']-mp['c'])*(mp['e']+mp['f']);
int resmat[2][2];
resmat[0][0]=p5+p4-p2+p6;
resmat[0][1]=p1+p2;
resmat[1][0]=p3+p4;
resmat[1][1]=p1+p5-p3-p7;
cout<<"THE RESULTANT MATRIX A X B IS\n";
for(int i=0;i<2;i++)
{
for(int j=0;j<2;j++)
cout<<resmat[i][j]<<" ";
cout<<endl;
}
return 0;
}