This repository was archived by the owner on Sep 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatrix.h
119 lines (109 loc) · 2.89 KB
/
Matrix.h
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#include <iostream>
#include <stdlib.h>
using namespace std;
template <class T>
class Matrix {
private:
int row, col;
T** entr;
public:
inline Matrix();
// costruttore di default
Matrix(int r, int c);
// costruttore di matrice rxc
Matrix(int r, int c, T initval);
// costruttore di matrice rxc con tutte le entrate = initval
Matrix(int r, int c, T* array);
// costruttore di matrice rxc con entrate da array[rxc] elencate per righe
Matrix(const Matrix<T> &m);
// costruttore di copia da m
~Matrix();
// deallocatore
inline int Row() { return row; }
// ritona il numero delle righe
inline int Col() { return col; }
// ritona il numero delle colonne
inline T*& operator[](int i) { return entr[i]; }
// consente l'uso della notazione m[i][j] in lettura/scrittura
Matrix<T>& operator=(const Matrix<T> &m);
// sovraccarico di =, permette di assegnare matrici a var. di matrici
template <class S>
friend ostream& operator<<(ostream &os, const Matrix<S> &m);
// stampa m per righe con il comando cout << m;
};
template <class T>
inline Matrix<T>::Matrix() {row = 0; col = 0; entr = NULL; }
template <class T>
Matrix<T>::~Matrix()
{
for(int i = 0; i < row; i++)
delete entr[i];
delete entr;
}
template <class T>
Matrix<T>::Matrix(int r, int c)
{
row = r; col = c;
entr = new T*[row];
for(int i = 0; i < row; i++)
entr[i] = new T[col];
}
template <class T>
Matrix<T>::Matrix(int r, int c, T initval)
{
row = r; col = c;
entr = new T*[row];
for(int i = 0; i < row; i++)
entr[i] = new T[col];
for(int i = 0; i < row; i++)
for(int j = 0; j < col; j++)
entr[i][j] = initval;
}
template <class T>
Matrix<T>::Matrix(int r, int c, T* array)
{
row = r; col = c;
entr = new T*[row];
for(int i = 0; i < row; i++)
entr[i] = new T[col];
for(int i = 0; i < row; i++)
for(int j = 0; j < col; j++)
entr[i][j] = array[i*col + j];
}
template <class T>
Matrix<T>::Matrix(const Matrix<T> &m)
{
row = m.row; col = m.col;
entr = new T*[row];
for(int i = 0; i < row; i++)
entr[i] = new T[col];
for(int i = 0; i < row; i++)
for(int j = 0; j < col; j++)
entr[i][j] = m.entr[i][j];
}
template <class T>
Matrix<T>& Matrix<T>::operator=(const Matrix<T> &m)
{
for(int i = 0; i < row; i++)
delete entr[i];
delete entr;
row = m.row; col = m.col;
entr = new T*[row];
for(int i = 0; i < row; i++)
entr[i] = new T[col];
for(int i = 0; i < row; i++)
for(int j = 0; j < col; j++)
entr[i][j] = m.entr[i][j];
return *this;
}
template <class S>
ostream& operator<<(ostream &os, const Matrix<S> &m)
{
for(int i = 0; i < m.row; i++)
{
for(int j = 0; j < m.col; j++)
os << m.entr[i][j] << '\t';
os << endl;
}
return os;
}