Add files via upload

This commit is contained in:
Christian Bender
2017-12-23 18:30:49 +01:00
committed by GitHub
parent 220c0fbaf8
commit 4b7d334c6e
31 changed files with 2290 additions and 0 deletions

28
Others/Sparse matrix.cpp Normal file
View File

@@ -0,0 +1,28 @@
/*A sparse matrix is a matrix which has number of zeroes greater than (m*n)/2,
where m and n are the dimensions of the matrix.*/
#include <iostream>
int main()
{
int m,n,i,j,c=0;
cout << "Enter dimensions of matrix:";
cin >> m >> n;
int a[m][n];
cout << "Enter matrix elements:";
for(i=0;<m;i++)
{
for(j=0;j<n;j++)
cin >> a[i][j];
}
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
if(a[i][j]==0)
c++; //Counting number of zeroes
}
}
if(c>((m*n)/2)) //Checking for sparse matrix
cout << "Sparse matrix";
else
cout << "Not a sparse matrix";
}