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
|
#include <iostream>
#include <stdlib.h>
using namespace std;
typedef struct actividad {
string nombre;
struct actividad *siguiente;
struct actividad *anterior;
} Nueva_Actividad;
typedef struct semestres{
int semestre;
Nueva_Actividad *Actividad;
} Primero, Segundo;
typedef struct año_lectivo{
int año;
Primero P;
Segundo S;
struct año_lectivo *siguiente;
struct año_lectivo *anterior;
}Nuevo_año;
typedef Nuevo_año *Año;
Nuevo_año *fin;
typedef Nueva_Actividad *Act;
Nueva_Actividad *act_fin;
void IngresarAño (Año &lista, int año_lectivo){
Año nuevo;
nuevo = new(Nuevo_año);
nuevo->año = año_ingresado;
nuevo->P.semestre = 1;
nuevo->S.semestre = 2;
if (lista == NULL){
lista = nuevo;
lista->siguiente = nuevo;
lista->anterior = nuevo;
fin = lista;
}
else {
nuevo->siguiente = lista;
nuevo->anterior = fin;
lista->anterior = nuevo;
fin->siguiente = nuevo;
lista = nuevo;
}
}
void MostrarAño (Año &lista){
Año mostrar;
mostrar = lista;
int i=1;
cout << "Años Ingresado al momento";
do {
cout <<"\n" << i <<"." <<mostrar->año;
mostrar = mostrar->siguiente;
i++;
}while (mostrar != lista);
}
void IngresarActividad (Act &actividad, char nombre_act){
Act new_act;
new_act = new(Nueva_Actividad);
new_act->nombre = nombre_act;
if (actividad == NULL){
actividad = new_act;
actividad->siguiente = new_act;
actividad->anterior = new_act;
act_fin = actividad;
}
else {
new_act->siguiente = actividad;
new_act->anterior = act_fin;
actividad->anterior = new_act;
act_fin->siguiente = new_act;
actividad = new_act;
}
}
void ActSemestre (Año &lista, Act &actividad, int año_lectivo, int semestre_año, char nombre_act){
Act aux;
Año año_lect;
año_lect = lista;
int band = 0;
if(lista != NULL){
do {
if ( año_lect->año == año_lectivo ){
if (año_lect->P.semestre == semestre_año && semestre_año == 1){
if (año_lect->P.Actividad == NULL){
año_lect->P.Actividad = actividad;
IngresarActividad (actividad, nombre_act);
}
} else
{
if (año_lect->S.Actividad == NULL)
año_lect->S.Actividad = actividad;
IngresarActividad (actividad, nombre_act);
}
band = 1;
}
año_lect = año_lect->siguiente;
} while (año_lect !=lista);
if (band == 0)
cout << "\nNo se encontro el año de la actividad";
} else cout << "\nLista Vacia";
}
void MostrarAct(Año &lista, int año_lectivo, int semestre_año){
Año recorrido, aux;
recorrido = lista;
aux = lista;
do {
if( recorrido->año == año_lectivo){
if (semestre_año == 1){
while (recorrido->P.Actividad == NULL){
cout << "\n ">> recorrido->P.Actividad->nombre;
recorrido->P.Actividad = recorrido->P.Actividad->siguiente;
}
} else if (semestre_año == 2){
while (recorrido->S.Actividad == NULL){
cout << "\n ">> recorrido->S.Actividad->nombre;
recorrido->S.Actividad = recorrido->S.Actividad->siguiente;
}
}
}
recorrido = recorrido->siguiente;
}while(recorrido!=lista);
}
void menu_estructura()
{
cout<<"\n\t\tLISTA ENLAZADA DOBLE CIRCULAR\n\n";
cout<<" 1. Insertar Año Lectivo "<<endl;
cout<<" 2. Añadir Nueva Actividad "<<endl;
cout<<" 3. Mostrar Actividades por Año y Semestre "<<endl;
cout<<" 4. Salir "<<endl;
cout<<"\n Ingrese Opcion: ";
}
int main()
{
Año lista = NULL;
Act actividad = NULL;
int opcion_menu;
int ingresar_año, año_semestre;
char nombre_act;
system("color 09");
do
{
menu_estructura(); cin>> opcion_menu;
switch(opcion_menu)
{
case 1:
cout<< "\n Año a Ingresar: "; cin>> ingresar_año;
IngresarAño (lista, ingresar_año);
MostrarAño (lista);
break;
case 2:
cout << "Nueva Actividad A Ingresar\n";
cout << "\n Año Lectivo : "; cin >> ingresar_año;
do {
cout<< "\n Seleccione semestre: \n1.Primer Semestre \n2. Segundo Semestre "; cin >> año_semestre;
} while (año_semestre != 1 || año_semestre != 2);
cout << "\n Actividad : "; cin>> nombre_act;
ActSemestre (lista, actividad, nombre_act, ingresar_año,año_semestre);
break;
case 3:
cout<<"\n Mostrar Actividades por Año y Semestre: "; cin>> ingresar_año;
MostrarAct(lista, ingresar_año, año_semestre);
break;
}
cout<<endl<<endl;
system("pause"); system("cls");
}while(opcion_menu!=4);
system("pause");
return 0;
}
|