-
Notifications
You must be signed in to change notification settings - Fork 0
/
Proyecto.cpp
354 lines (327 loc) · 11.9 KB
/
Proyecto.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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
//Librerias
#include <iostream>
#include "./Functions.cpp"
#include "./Fecha.cpp"
#include "./Persona.cpp"
#include "./Postulante.cpp"
#include "./OfertaLaboral.cpp"
#include "./Reservacion.cpp"
#include "./login.cpp"
#include "./Pila.cpp"
#include "./Cola.cpp"
#include "./Lista.cpp"
#include <string.h>
#include <typeinfo>
// Estructuras colas, pilas, listas, arbol
//#include "./ColaPersona.cpp"
using namespace std;
// Prototipos
template <typename T>
void ingresarPostulante(Lista<T> *&);
template <typename T>
void ingresarOfertaLaboral(Lista<T> *&);
template <typename T, typename A, typename B>
void asociarPostulanteOferta(Cola<T> *&, Cola<T> *&, Lista<A> *&, Lista<B> *&);
template <typename T>
void recorrerPostulantes(Lista<T> *&);
template <typename T>
void recorrerOfertas(Lista<T> *&);
template<typename A, typename B>
void mostrarPostulanteOferta(Lista<A> *&, Lista<B> *&);
template <typename T>
void mostrarEntrevistados(Pila<T> *&);
int main () {
bool flag = true, entrevistaFlag;
string aux;
int opcion = 0, subopcion = 0, opcionEntrevista;
string menuItem[] = {
"Ingresar postulante",
"Ingresar oferta laboral",
"Asociar postulante con oferta laboral",
"Entrevistar",
"Mostrar datos",
"Salir"
};
string menuMostrarDatos[] = {
"Mostrar postulantes",
"Mostrar oferta laborales",
"Mostrar entrevistados",
"Salir"
};
int menuSize = sizeof(menuItem)/sizeof(menuItem[0]);
int menuMostrarDatosSize = sizeof(menuMostrarDatos)/sizeof(menuMostrarDatos[0]);
// Estructura cola que almacena postulantes
Lista<Postulante> *postulantes = NULL;
Lista<OfertaLaboral> *ofertasLaborales = NULL;
Cola<Reservacion> *primeraReservacion = NULL;
Cola<Reservacion> *ultimaReservacion = NULL;
Pila<Reservacion> *entrevistados;
// Estructura lista que almacena ofertas laborales
// Variables auxiliares
Reservacion auxReservacion;
int auxReservacionOpcion = 0;
if(login()){
while(flag) {
limpiarPantalla();
menu(menuItem, "RECURSOS HUMANOS", menuSize);
cout << "Ingrese una opcion: " ;
aux = pedirCadena();
opcion = convertirEntero(aux);
if(opcion > 0) {
if(opcion == 1) {
ingresarPostulante(postulantes);
}else if(opcion == 2) {
ingresarOfertaLaboral(ofertasLaborales);
}else if(opcion == 3) {
asociarPostulanteOferta(primeraReservacion, ultimaReservacion, postulantes, ofertasLaborales);
}else if(opcion == 4) {
entrevistaFlag = true;
while(entrevistaFlag) {
entrevistaFlag = true;
limpiarPantalla();
cout << endl << "----------- ENTREVISTA -----------" << endl;
cout << endl << "Desea entrevistar?" << endl;
cout << "1. SI" << endl << "2. No" ;
aux = pedirCadena();
opcionEntrevista = convertirEntero(aux);
if(opcionEntrevista == 2) {
entrevistaFlag = false;
}
if(opcionEntrevista == 1) {
auxReservacion = popCola(&primeraReservacion, &ultimaReservacion);
if(!(auxReservacion.postulante.codigo <= 0 || auxReservacion.postulante.codigo >= 10000 || auxReservacion.ofertaLaboral.codigo <=0 || auxReservacion.ofertaLaboral.codigo >= 10000 )) {
cout << endl << "Entrevistando a" << endl;
mostrarPostulante(auxReservacion.postulante);
cout << endl << "Para la oferta laboral" << endl;
mostrarOfertaLaboral(auxReservacion.ofertaLaboral);
while(true) {
cout << endl << "Al terminar la entrevista seleccione: ";
cout << endl << "1. Es contratado" << endl << "2. No es contratado";
aux = pedirCadena();
auxReservacionOpcion = convertirEntero(aux);
if(auxReservacionOpcion == 1) {
cout << endl << "Se contrato a " << endl;
mostrarPostulanteInline(auxReservacion.postulante);
cout << endl << "Para la oferta de "<< endl;
mostrarOfertaInline(auxReservacion.ofertaLaboral);
auxReservacion.esContratado = true;
pushStack(entrevistados, auxReservacion);
break;
}else if(auxReservacionOpcion == 2) {
cout << endl << "Se decidio no contratarlo";
auxReservacion.esContratado = false;
break;
}else {
cout << endl << "Debe seleccionar una opcion valida"<<endl;
system("PAUSE");
}
}
system("PAUSE");
} else {
cout << endl;
system("PAUSE");
}
}else {
cout << endl << "Debe ingresar una opcion valida";
}
}
}else if(opcion == 5) {
while(true) {
limpiarPantalla();
menu(menuMostrarDatos, "MOSTRAR DATOS", menuMostrarDatosSize);
cout << "Ingrese una opcion: " ;
aux = pedirCadena();
subopcion = convertirEntero(aux);
if(subopcion == 1) {
recorrerPostulantes(postulantes);
system("PAUSE");
}
if(subopcion == 2) {
recorrerOfertas(ofertasLaborales);
system("PAUSE");
}
if(subopcion == 3) {
mostrarEntrevistados(entrevistados);
system("PAUSE");
}
if(subopcion == 4) {
break;
}
}
} else if (opcion == 6) {
flag = false;
} else if(opcion == 7) {
system("PAUSE");
}
}else {
cout << endl << "Debe ingresar una opcion valida" << endl;
}
}
}
return 0;
}
/**
* Funcion que pide un nuevo postulante y lo inserta en una lista
*/
template <typename T>
void ingresarPostulante(Lista<T> *&lista) {
Postulante nuevo ;
nuevo = pedirPostulante();
pushLista(lista, nuevo);
cout << endl << "Se inserto el postulante correctamente" << endl;
system("PAUSE");
}
/**
* Funcion que recorre todos los postulantes existentes en una lista
*/
template <typename T>
void recorrerPostulantes(Lista<T> *&lista) {
Lista<T> *aux = lista;
while(lista != NULL) {
cout << endl << "-------------------------------------" << endl;
mostrarPostulante(lista->dato);
lista = lista->siguiente;
}
cout << endl;
lista = aux;
}
/**
* Funcion que pide una oferta laboral y la guarda en una lista
*/
template <typename T>
void ingresarOfertaLaboral(Lista<T> *& lista) {
OfertaLaboral nuevo;
nuevo = pedirOfertaLaboral();
pushLista(lista, nuevo);
cout << endl << "Se inserto la oferta laboral correctamente" << endl;
system("PAUSE");
}
/**
* Funcion que recorre las ofertas laborales existentes
*/
template <typename T>
void recorrerOfertas(Lista<T> *& lista) {
Lista<T> *aux = lista;
while(lista != NULL) {
cout << endl << "-------------------------------------" << endl;
mostrarOfertaLaboral(lista->dato);
lista = lista->siguiente;
}
cout << endl;
lista = aux;
}
/**
* La siguiente funcion se encarga de asociar a un postulate con una oferta laboral
*/
template<typename T, typename A, typename B>
void asociarPostulanteOferta(Cola<T> *& primero, Cola<T> *& ultimo, Lista<A> *&postulantes, Lista<B> *&ofertas) {
Reservacion nuevo;
Fecha fecha;
Lista<A> *aux1 = postulantes;
Lista<B> *aux2 = ofertas;
A dato1;
B dato2;
int idSeleccion = 0, v;
bool flag = true;
string cad = "";
mostrarPostulanteOferta(postulantes, ofertas);
/* El siguiente bloque de codigo toma un codigo de postulante exitente para la reservacion*/
while(flag) {
cout << endl << "Ingrese el codigo del postulante: ";
cad = pedirCadena();
idSeleccion = convertirEntero(cad);
if(idSeleccion > 0) {
postulantes = aux1;
if(postulantes == NULL) {
cout << endl << "No hay postulantes";
break;
}
while(postulantes != NULL) {
if(postulantes->dato.codigo == idSeleccion) {
flag = false;
dato1 = postulantes->dato;
}
postulantes = postulantes->siguiente;
}
if(flag) {
cout << endl << "El codigo que selecciono no existe en postulantes";
}
}
}
flag = true;
/* El siguiente bloque de codigo toma el codigo existente de una oferta laboral para la reservacion*/
while(flag) {
cout << endl << "Ingrese el codigo de la Oferta: ";
cad = pedirCadena();
idSeleccion = convertirEntero(cad);
if(idSeleccion > 0) {
ofertas = aux2;
if(ofertas == NULL) {
cout << endl<< "No hay ofertas";
break;
}
while(ofertas != NULL) {
if(ofertas->dato.codigo == idSeleccion) {
flag = false;
dato2 = ofertas->dato;
}
ofertas = ofertas->siguiente;
}
if(flag) {
cout << endl << "El codigo que selecciono no existe en las ofertas";
}
}
}
/* En caso de que no exista un postulante o una oferta no se crea la reservacion */
if(!(aux1 == NULL && aux2 == NULL)) {
fecha = pedirFecha();
nuevo = generarReservacion(dato2, dato1, fecha);
pushCola(&primero, &ultimo, nuevo);
postulantes = aux1;
ofertas = aux2;
}
system("PAUSE");
}
/**
* La siguiente funcion se encarca de mostrar los datos de los postulantes y las
* ofertas laborales en una sola linea.
*/
template<typename A, typename B>
void mostrarPostulanteOferta(Lista<A> *& postulantes, Lista<B> *& ofertas) {
Lista<A> *aux1 = postulantes;
Lista<B> *aux2 = ofertas;
cout << endl << "Datos sobre postulantes";
while(postulantes != NULL) {
mostrarPostulanteInline(postulantes->dato);
postulantes = postulantes->siguiente;
}
cout << endl << "Datos sobre las ofertas";
while(ofertas != NULL) {
mostrarOfertaInline(ofertas->dato);
ofertas = ofertas->siguiente;
}
postulantes = aux1;
ofertas = aux2;
}
/**
* La siguiente funcion permite mostrar los datos de los entrevistados
* */
template <typename T>
void mostrarEntrevistados(Pila<T> *&datos) {
Reservacion r;
Pila<T> *aux = datos;
while(datos != NULL) {
r = popStack(datos);
if(r.esContratado) {
cout << endl << "************* CONTRATADO *************" << endl;
}else {
cout << endl << "************* NO CONTRATADO *************" << endl;
}
cout << endl << "POSTULANTE"<< endl;
mostrarPostulante(r.postulante);
cout << endl << "OFERTA" << endl;
mostrarOfertaLaboral(r.ofertaLaboral);
datos = datos->siguiente;
}
datos = aux;
}