-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathMatrix.cpp
144 lines (128 loc) · 3.25 KB
/
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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#include "Matrix.h"
template <typename T>
Matrix<T>::Matrix(int rows, int cols) : rows(rows), cols(cols) {
allocateMemories();
}
template <typename T>
Matrix<T>::Matrix(const Matrix<T>& matrix)
: rows(matrix.rows), cols(matrix.cols) {
allocateMemories();
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
p[i][j] = matrix.p[i][j];
}
}
}
template <typename T>
Matrix<T>::Matrix(const std::vector<std::vector<T>>& vec)
: rows(vec.size()), cols(vec[0].size()) {
allocateMemories();
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
p[i][j] = vec[i][j];
}
}
}
template <typename T>
Matrix<T> Matrix<T>::get11() const {
Matrix m(rows / 2, cols / 2);
for (int i = 0; i < rows / 2; i++) {
for (int j = 0; j < cols / 2; j++) {
m.p[i][j] = p[i][j];
}
}
return m;
}
template <typename T>
Matrix<T> Matrix<T>::get12() const {
Matrix m(rows / 2, cols - cols / 2);
for (int i = 0; i < rows / 2; i++) {
for (int j = 0; j < cols - cols / 2; j++) {
m.p[i][j] = p[i][j + cols / 2];
}
}
return m;
}
template <typename T>
Matrix<T> Matrix<T>::get21() const {
Matrix m(rows - rows / 2, cols / 2);
for (int i = 0; i < rows - rows / 2; i++) {
for (int j = 0; j < cols / 2; j++) {
m.p[i][j] = p[i + rows / 2][j];
}
}
return m;
}
template <typename T>
Matrix<T> Matrix<T>::get22() const {
Matrix m(rows - rows / 2, cols - cols / 2);
for (int i = 0; i < rows - rows / 2; i++) {
for (int j = 0; j < cols - cols / 2; j++) {
m.p[i][j] = p[i + rows / 2][j + cols / 2];
}
}
return m;
}
template <typename T>
Matrix<T> operator+(const Matrix<T>& lhs, const Matrix<T>& rhs) {
Matrix<T> res(lhs);
for (int i = 0; i < res.rows; i++) {
for (int j = 0; j < res.cols; j++) {
res.p[i][j] += rhs.p[i][j];
}
}
return res;
}
template <typename T>
Matrix<T> operator-(const Matrix<T>& lhs, const Matrix<T>& rhs) {
Matrix<T> res(lhs);
for (int i = 0; i < res.rows; i++) {
for (int j = 0; j < res.cols; j++) {
res.p[i][j] -= rhs.p[i][j];
}
}
return res;
}
template <typename T>
Matrix<T> operator*(const Matrix<T>& lhs, const Matrix<T>& rhs) {
Matrix<T> res(lhs.rows, rhs.cols);
for (int i = 0; i < res.rows; i++) {
for (int j = 0; j < res.cols; j++) {
for (int k = 0; k < res.rows; k++) {
res.p[i][j] += lhs.p[i][k] * rhs.p[k][j];
}
}
}
return res;
}
template <typename T>
Matrix<T> combine(const Matrix<T>& m11, const Matrix<T>& m12,
const Matrix<T>& m21, const Matrix<T>& m22) {
int m = m11.rows + m21.rows;
int n = m11.cols + m12.cols;
Matrix<T> matrix(m, n);
int y = m / 2;
int x = n / 2;
for (int i = 0; i < y; i++) {
for (int j = 0; j < x; j++)
matrix.p[i][j] = m11.p[i][j];
for (int j = 0; j < n - x; j++)
matrix.p[i][j + x] = m12.p[i][j];
}
for (int i = 0; i < m - y; i++) {
for (int j = 0; j < x; j++)
matrix.p[i + y][j] = m21.p[i][j];
for (int j = 0; j < x; j++)
matrix.p[i + y][j + x] = m22.p[i][j];
}
return matrix;
}
template <typename T>
void Matrix<T>::allocateMemories() {
p = new T*[rows];
for (int i = 0; i < rows; i++) {
p[i] = new T[cols];
for (int j = 0; j < cols; ++j)
p[i][j] = 0;
}
}