-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix.h
189 lines (153 loc) · 5.36 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#ifndef MATRIX_H
#define MATRIX_H
class Matrix{
protected:
int m, n;
public:
// Accessors (Getter Functions)
virtual int at(int i, int j) const = 0;
virtual int **get() const = 0;
int getRows() const;
int getCols() const;
// Mutators (Setter Functions)
virtual void set(int i, int j, int num) = 0;
// // Facilitators
// virtual int *add(Matrix &mat) const = 0;
// virtual int *subtract(Matrix &mat) const = 0;
// virtual int *subtractFrom(Matrix &mat) const = 0;
// virtual int *multiplyWith(Matrix &mat) const = 0;
// virtual int *multiplyTo(Matrix &mat) const = 0;
};
class Matrixx : public Matrix{
private:
int **mat;
public:
// Constructors
Matrixx(int m, int n);
Matrixx(int m, int n, int* matrix);
Matrixx(const Matrixx &mat); // Copy Constructor
// Accessors (Getter Functions)
int** get() const;
int at(int i, int j) const;
// Mutators (Setter Functions)
void set(int i, int j, int num);
// Facilitators
// int *add(Matrix &mat);
// int *subtract(Matrix &mat);
// int *subtractFrom(Matrix &mat);
// int *multiplyWith(Matrix &mat);
// int *multiplyTo(Matrix &mat);
// Operator Overloads
friend std::ostream &operator<<(std::ostream &cout, const Matrixx &mat);
// Destructors
~Matrixx();
};
class DiagonalMatrix : public Matrix{
private:
int *arr;
public:
// Constructors
DiagonalMatrix(int n, const int *digonalElements);
DiagonalMatrix(const DiagonalMatrix &mat);
// Accessors (Getter Functions)
int** get() const;
int at(int i, int j) const;
// Mutators (Setter Functions)
void set(int i, int j, int num);
// Facilitators
// int *add(Matrix &mat);
// int *subtract(Matrix &mat);
// int *subtractFrom(Matrix &mat);
// int *multiplyWith(Matrix &mat);
// int *multiplyTo(Matrix &mat);
// Operator Overloads
friend std::ostream &operator<<(std::ostream &cout, const DiagonalMatrix &mat);
// Destructors
~DiagonalMatrix();
};
class LowerTriangularMatrix : public Matrix{
private:
int *arr;
public:
// Constructors
LowerTriangularMatrix(int n, const int *rowMajorElements);
LowerTriangularMatrix(const LowerTriangularMatrix &mat);
// Accessors (Getter Functions)
int** get() const;
int *getRepresentation() const;
int at(int i, int j) const;
// Mutators (Setter Functions)
void set(int i, int j, int num);
// Facilitators
// int *add(Matrix &mat);
// int *subtract(Matrix &mat);
// int *subtractFrom(Matrix &mat);
// int *multiplyWith(Matrix &mat);
// int *multiplyTo(Matrix &mat);
// Operator Overloads
friend std::ostream &operator<<(std::ostream &cout, const LowerTriangularMatrix &mat);
// Destructors
~LowerTriangularMatrix();
};
class UpperTriangularMatrix : public Matrix{
private:
int *arr;
public:
// Constructors
UpperTriangularMatrix(int n, const int *rowMajorElements);
UpperTriangularMatrix(const UpperTriangularMatrix &mat);
// Accessors (Getter Functions)
int** get() const;
int *getRepresentation() const;
int at(int i, int j) const;
// Mutators (Setter Functions)
void set(int i, int j, int num);
// Facilitators
// int *add(Matrix &mat);
// int *subtract(Matrix &mat);
// int *subtractFrom(Matrix &mat);
// int *multiplyWith(Matrix &mat);
// int *multiplyTo(Matrix &mat);
// Operator Overloads
friend std::ostream &operator<<(std::ostream &cout, const UpperTriangularMatrix &mat);
// Destructors
~UpperTriangularMatrix();
};
class SparseElement{
public:
int i;
int j;
int x;
SparseElement();
friend std::ostream &operator<<(std::ostream &cout, SparseElement &ele);
};
class SparseMatrix : public Matrix{
private:
int num, size;
SparseElement *ele;
public:
// Constructors
SparseMatrix(int m, int n);
SparseMatrix(SparseMatrix &mat); // Copy Constructor
// Accessors (Getter Functions)
int getSparseArrayLength() const;
int getSize() const;
SparseElement *getSparseArray() const;
int getSparseIndex(int i, int j) const;
int **get() const;
int at(int i, int j) const;
// Mutators (Setter Functions)
void set(int i, int j, int x);
// Facilitators
SparseMatrix* add(const SparseMatrix& s) const;
// int *subtract(Matrix &mat);
// int *subtractFrom(Matrix &mat);
// int *multiplyWith(Matrix &mat);
// int *multiplyTo(Matrix &mat);
// Operator Overloads
SparseMatrix& operator+(SparseMatrix &s);
friend std::ostream &operator<<(std::ostream &cout, SparseMatrix &mat);
// Destructors
~SparseMatrix();
};
#endif