-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMatrix.cpp
More file actions
140 lines (128 loc) · 2.34 KB
/
Matrix.cpp
File metadata and controls
140 lines (128 loc) · 2.34 KB
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
#include "Matrix.h"
Matrix::Matrix(){
//inf = -1;
size = CountNode();
elmts = new int *[size];
for (int i=0; i<size; i++)
elmts[i] = new int[size];
InputElement();
}
Matrix::Matrix(const Matrix& M){
size = M.size;
elmts = new int *[size];
for (int i=0; i<size; i++)
elmts[i] = new int[size];
for (int i=0; i<size; i++){
for (int j=0; j<size; j++)
elmts[i][j] = M.elmts[i][j];
}
}
int Matrix::getElmt(int i, int j){
return elmts[i-1][j-1];
}
int Matrix::getNB(){
return size;
}
int Matrix::CountNode(){
ifstream file("input0.txt");
string line;
getline (file,line);
file.close();
int i=0, count=0;
while(i < line.length()){
do{
i++;
} while (line[i]!=' ' && i<line.length());
count++;
}
return count;
}
void Matrix::InputElement(){
ifstream file("input0.txt");
string line; int i=0,j,k,l;
while (getline (file,line)){
j=0;
stringstream stream(line);
while (stream.good() && j<size){
stream >> elmts[i][j];
j++;
}
i++;
}
file.close();
}
int Matrix::SmallestNumRow(int row){
int i=0;
while (elmts[row-1][i]==inf && i<size-1)
i++;
if (i==size)
return inf;
else{
int min = elmts[row-1][i];
i++;
while (i<size){
if (elmts[row-1][i] < min && elmts[row-1][i]!=inf)
min = elmts[row-1][i];
i++;
}
return min;
}
}
int Matrix::SmallestNumCol(int col){
int i=0;
while (elmts[i][col-1]==inf && i<size-1)
i++;
if (i==size)
return inf;
else{
int min = elmts[i][col-1];
i++;
while (i<size){
if (elmts[i][col-1] < min && elmts[i][col-1]!=inf)
min = elmts[i][col-1];
i++;
}
return min;
}
}
void Matrix::SetInfinite(int i, int j){
for (int k=0; k<size; k++){
elmts[i-1][k] = inf;
elmts[k][j-1] = inf;
}
elmts[j-1][0] = inf;
}
int Matrix::ReducedCostMatrix(){
int min, cost=0;
// reducing rows
for (int i=1; i<=size; i++){
min = SmallestNumRow(i);
if (min != inf && min > 0){
for (int j=0; j<size; j++){
if (elmts[i-1][j]!=inf)
elmts[i-1][j] -= min;
}
cost += min;
}
}
// reducing columns
for (int i=1; i<=size; i++){
min = SmallestNumCol(i);
if (min != inf && min > 0){
for (int j=0; j<size; j++){
if (elmts[j][i-1]!=inf)
elmts[j][i-1] -= min;
}
cost += min;
}
}
return cost;
}
void Matrix::PrintMatrix(){
for (int i=0; i<size; i++){
for (int j=0; j<size; j++){
cout << elmts[i][j] << " ";
}
cout << endl;
}
}