-
Notifications
You must be signed in to change notification settings - Fork 3
/
newRoad.cpp
141 lines (121 loc) · 2.92 KB
/
newRoad.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
#include<iostream>
#include<unistd.h>
#include<cstdlib>
#include<fstream>
using namespace std;
// int k=1;
int main()
{ int n;
cin>>n;
double adjMatrix[n][n],temp[n][n];
// Input from map.txt
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
cin>>adjMatrix[i][j];
}
}
// // Showing input read from map.txt
// cout<<"contents of map.txt_________ :}";
// cout<<n<<endl;
// for(int i=0;i<n;i++)
// {
// for(int j=0;j<n;j++)
// {
// cout<<adjMatrix[i][j]<<" ";
// }
// cout<<endl;
// }
fstream f;
ofstream fA;
f.open("count.txt",ios::in);
f.seekg(0);
char k;
f.get(k);
f.close();
cout<<endl;
// cout<<"current count is -->"<<k;
int t=k-'0';
// cout<<"value of int 't' is >>>>>>>>>"<<t;
if(t==1)
{
// cout<<"\t\tALERT : t=1 achieved";
fA.open("data.txt");
// fout1<<n<<endl;
// fA<<n<<endl;
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
fA<<adjMatrix[i][j]<<" ";
}
fA<<endl;
}
fA.close();
// cout<<"Content of data.txt/ss";
// system("cat data.txt");
}
else // t!=1
{
// cout<<"\t\tALERT : t!=1 state";
// read from data.txt and store in temp[][]
ifstream fin;
fin.open("data.txt");
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
fin>>temp[i][j]; //>>" ";
}
// fin>>"\n";
}
fin.close();
// cout<<"Contents of temp[][]--------.>>>>>>>>>."<<endl;
// for(int i=0;i<n;i++)
// {
// for(int j=0;j<n;j++)
// {
// cout<<temp[i][j]<<" ";
// }
// cout<<endl;
// }
// changing values
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
if(temp[i][j] != 2 && adjMatrix[i][j]!=2)
{
temp[i][j]=( ((t-1)*temp[i][j]) + adjMatrix[i][j] )/t;
}
}
}
// writing temp to data.txt
fA.open("data.txt");
// fout1<<n<<endl;
// fA<<n<<endl;
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
fA<<temp[i][j]<<" ";
}
fA<<endl;
}
fA.close();
// completed writing
}
// cout<<endl<<"FINAL CONTENTS OF data.txt";
// for(int i=0;i<n;i++)
// {
// for(int j=0;j<n;j++)
// {
// cout<<temp[i][j]<<" ";
// }
// cout<<endl;
// }
// cout<<endl<<endl<<"FINAL CONTENTS OF data.txt";
// system("cat data.txt");
return 0;
}