-
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
/
sparse_matrix.cpp
48 lines (39 loc) · 1.18 KB
/
sparse_matrix.cpp
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
/** @file
* A sparse matrix is a matrix which has number of zeroes greater than
* \f$\frac{m\times n}{2}\f$, where m and n are the dimensions of the matrix.
*/
#include <iostream>
/** main function */
int main() {
int m, n;
int counterZeros = 0;
std::cout << "Enter dimensions of matrix (seperated with space): ";
std::cin >> m;
std::cin >> n;
int **a = new int *[m];
for (int i = 0; i < m; i++) a[i] = new int[n];
std::cout << "Enter matrix elements:";
std::cout << "\n";
// reads the matrix from stdin
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
std::cout << "element? ";
std::cin >> a[i][j];
}
}
// counts the zero's
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
if (a[i][j] == 0)
counterZeros++; // Counting number of zeroes
}
}
// makes sure the matrix is a sparse matrix
if (counterZeros > ((m * n) / 2)) // Checking for sparse matrix
std::cout << "Sparse matrix";
else
std::cout << "Not a sparse matrix";
for (int i = 0; i < m; i++) delete[] a[i];
delete[] a;
return 0;
}