-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
274 lines (185 loc) · 6.23 KB
/
main.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
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
// Aquí va todo lo relacionado con el menú principal //
// Diaz Carlos, C.I 303994429
// Sosa Daniel, C.I 30114242
#include <iostream>
#include <iomanip>
#include <chrono>
#include "main.h"
#include "tiempo.h"
using namespace std::chrono;
using namespace std;
int main()
{
microseconds fifosec, lifosec, rrsec;
cls();
ask();
cls();
// para que se vea en la consola nmms //
cout << endl << endl << endl;
// para que se vea en la consola nmms //
cout << "FIFO";
cout << endl;
cout << setw(6) << "LETRA";
cout << setw(6) <<"ti";
cout << setw(6) <<"t";
cout << setw(6) <<"tf";
cout << setw(6) <<"T";
cout << setw(6) <<"E";
cout << setw(8) <<"I";
correr_algoritmo(0, fifosec);
calculos_basicos(arr);
arr_temp_efectividad[contador_temp] = efectividad*100;
contador_temp++;
for (int i = 0; i < arr.size(); i++)
{
cout << setw(4) << alfabeto[i];
cout << setw(6) << arr[i].ti;
cout << setw(6) << arr[i].t;
cout << setw(6) << arr[i].tf;
cout << setw(6) << arr[i].T;
cout << setw(6) << arr[i].E;
cout << setprecision(4) << setw(10) << arr[i].I;
cout << endl;
}
cout << setw(30) << tiempo_servicio;
cout << setw(6) << tiempo_espera;
cout << setw(8) << efectividad;
cout << endl;
cout << endl << endl << endl;
presiona_continuar();
cls();
vacio(arr);
cout << endl << endl << endl;
cout << "LIFO";
cout << endl;
cout << setw(6) << "LETRA";
cout << setw(6) <<"ti";
cout << setw(6) <<"t";
cout << setw(6) <<"tf";
cout << setw(6) <<"T";
cout << setw(6) <<"E";
cout << setw(8) <<"I";
correr_algoritmo(1, lifosec);
calculos_basicos(arr);
arr_temp_efectividad[contador_temp] = efectividad*100;
contador_temp++;
for (int i = 0; i < arr.size(); i++)
{
cout << setw(4) << alfabeto[i];
cout << setw(6) << arr[i].ti;
cout << setw(6) << arr[i].t;
cout << setw(6) << arr[i].tf;
cout << setw(6) << arr[i].T;
cout << setw(6) << arr[i].E;
cout << setprecision(4) << setw(10) << arr[i].I;
cout << endl;
}
cout << setw(30) << tiempo_servicio;
cout << setw(6) << tiempo_espera;
cout << setw(8) << efectividad;
cout << endl;
cout << endl << endl << endl;
presiona_continuar();
cls();
vacio(arr);
cout << endl << endl << endl;
cout << "RR";
cout << endl;
cout << setw(6) << "LETRA";
cout << setw(6) <<"ti";
cout << setw(6) <<"t";
cout << setw(6) <<"tf";
cout << setw(6) <<"T";
cout << setw(6) <<"E";
cout << setw(8) <<"I";
correr_algoritmo(2, rrsec);
cout << endl;
calculos_basicos(arr);
arr_temp_efectividad[contador_temp] = efectividad*100;
contador_temp++;
for (int i = 0; i < arr.size(); i++)
{
cout << setw(4) << alfabeto[i];
cout << setw(6) << arr[i].ti;
cout << setw(6) << arr[i].t;
cout << setw(6) << arr[i].tf;
cout << setw(6) << arr[i].T;
cout << setw(6) << arr[i].E;
cout << setprecision(4) << setw(10) << arr[i].I;
cout << endl;
}
cout << setw(30) << tiempo_servicio;
cout << setw(6) << tiempo_espera;
cout << setw(8) << efectividad;
cout << endl;
cout << endl << endl << endl;
presiona_continuar();
cls();
cout << endl;
cout << "Efectividad de los algoritmos: ";
cout << endl;
cout << "FIFO: " << arr_temp_efectividad[0] << "%";
cout << endl;
cout << "LIFO: " << arr_temp_efectividad[1] << "%";
cout << endl;
cout << "RR: " << arr_temp_efectividad[2] << "%";
cout << endl;
if (arr_temp_efectividad[0] > (arr_temp_efectividad[1] || arr_temp_efectividad[2]))
{
cout << "FIFO ESTA MAS OPTIMIZADO PARA ESTA TAREA. ";
}
else if (arr_temp_efectividad[1] > (arr_temp_efectividad[0] || arr_temp_efectividad[2]))
{
cout << "LIFO ESTA MAS OPTIMIZADO PARA ESTA TAREA. ";
}
else if (arr_temp_efectividad[3] > (arr_temp_efectividad[0] || arr_temp_efectividad[1]))
{
cout << "RR ESTA MAS OPTIMIZADO PARA ESTA TAREA. ";
}
cout << endl << endl;
// Cabe a destacar aquí, que los microsegundos si funcionan, sólo que se necesita la version 14.1.0-3 del compilador de g++
cout << "Tiempos de realizacion: ";
cout << endl;
cout << "FIFO: " << fifosec.count() << "mics";
cout << endl;
cout << "LIFO: " << lifosec.count() << "mics";
cout << endl;
cout << "RR: " << rrsec.count() << "mics";
cout << endl;
cout << endl;
if (fifosec.count() < (lifosec.count() || rrsec.count()))
{
cout << "FIFO ES EL DE MENOR DURACION";
}
else if (lifosec.count() < (fifosec.count() || rrsec.count()))
{
cout << "LIFO ES EL DE MENOR DURACION";
}
else if (rrsec.count() < (fifosec.count() || lifosec.count()))
{
cout << "RR ES EL DE MENOR DURACION";
}
cout << endl << endl;
cout << "!!!!!!!!IMPORTANTE!!!!!!!!!!!" << endl;
cout << "POR RECOMENDACION DEL CREADOR BAJE EL VOLUMEN A UNO MODERADO. ";
cout << endl << endl;
presiona_continuar();
string videourl = "https://www.youtube.com/watch?v=AKVVXjdoRks";
string command = "start " + videourl;
system(command.c_str());
}
// BIENVENIDOS A MI MEGA CODIGO DE FIFO LIFO Y RR !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
// ANTES DE MOSTRAR EL CÓDIGO, TENGO UNAS COSAS QUE DECIR
// EN UNO DE LOS REQUISITOS ES TENER EL TIEMPO DE LOS ALGORITMOS
// SI ESTÁ, PERO LO QUE PASA ES QUE ESTAMOS USANDO LA LIBRERIA CHRONOS. (CRONOS ERA?) SI ERA CHRONO :)
// ENTONCES EN LA VERSIÓN DE G++ 13.2 NO ESTA FUNCIONANDO LOS MICROSEGUNDOS, Y ESTOS ALGORITMOS SON TAN RAPIDOS
// QUE CAPTARLOS EN OTRO SISTEMA DE MEDIDA NOS ARROJARA DE UNA VEZ 0.
// SI USTED PUEDE PROFESOR COMPILE EL CÓDIGO CON LA VERSION DE G++ 14.1.0-3
// MUCHAS GRACIAS LO DEJO CON EL CODIGO :)
// PAUSE PARA LEER COMPLETO //
// PAUSE PARA LEER COMPLETO //
// PAUSE PARA LEER COMPLETO //
// PAUSE PARA LEER COMPLETO //
// PAUSE PARA LEER COMPLETO //
// PAUSE PARA LEER COMPLETO //
// PAUSE PARA LEER COMPLETO //