• Lenguaje

    C

  • Descripción

    Implementa la estructura de datos de tipo lista ligada de números enteros.
    Contiene funciones como:

    • Insertar un número al final
    • Quitar el último número
    • Listar los elementos de la lista
    • Obtener el tamaño de la lista
    • Vaciar lista
    Además contiene funciones complementarias como:
    • Insertar números aleatorios
    • Insertar un número al principio
    • Consular si contiene un número
    • Quitar un número a buscar
    • Quitar el primer número
    • Ordenar la lista
    • Invertir la lista

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
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <ctype.h>

#ifdef __linux__
    #include <stdbool.h>
    #include <termios.h>
    #include <unistd.h>
    #define CLEAR_SCREEN "clear"
    #define FLECHA "\xE2\x94\x80\xE2\x96\xBA"
    #define AACUTE "\xC3\xA1"
    #define IACUTE "\xC3\xAD"
    #define OACUTE "\xC3\xB3"
    #define UACUTE "\xC3\xBA"
    #define NTILDE "\xC3\xB1"
    #define Aacute "\xC3\x81"
    int _getch ();
#else
    #include <conio.h>
    #ifdef __TURBOC__
        #define _getch getch
    #endif
    #define CLEAR_SCREEN "cls"
    #define FLECHA "\304\20"
    #define AACUTE "\240"
    #define IACUTE "\241"
    #define OACUTE "\242"
    #define UACUTE "\243"
    #define NTILDE "\244"
    #define Aacute "\265"
    /* Borre la siguiente sentencia si compila como lenguaje C++.  */
    /* Normalmente a los archivos con extencion .cpp el compilador */
    /* los maneja como lenguaje C++. La extencion debe ser .c      */
    typedef enum {false, true} bool;
#endif

typedef struct TDALista {
    struct TDALista *liga;
    int dato;
} *Lista;

Lista lista_insertar  (Lista nodo, int dato);
Lista lista_quitar    (Lista nodo, int dato);
bool  lista_contiene  (Lista nodo, int dato);
void  lista_listar    (Lista nodo);
bool  lista_ordenar   (Lista nodo);
void  lista_imprimir  (Lista nodo);
int   lista_tamano    (Lista nodo);
Lista lista_invertir  (Lista nodo, Lista inversa);
Lista lista_insertar_primero (Lista nodo, int dato);
Lista lista_quitar_primero   (Lista nodo);
Lista lista_quitar_ultimo    (Lista nodo);
int   leer_entero (const char *mensaje);

int main (void)
{
    Lista cabecera = NULL;
    int dato;
    char opcion;
    srand ((unsigned) time (NULL));
    do {
        system (CLEAR_SCREEN);
        printf (
            "OPERACIONES B" Aacute "SICAS DE LISTAS LIGADAS\n"
            "a) Insertar un n" UACUTE "mero al final\n"
            "b) Quitar el " UACUTE "ltimo n" UACUTE "mero\n"
            "c) Listar n" UACUTE "meros\n"
            "d) Tama" NTILDE "o de la lista\n"
            "e) Vaciar lista\n"
            "OPERACIONES COMPLEMENTARIAS\n"
            "f) Insertar n" UACUTE "meros aleatorios\n"
            "g) Insertar un n" UACUTE "mero al principio\n"
            "h) Consular si contiene un n" UACUTE "mero\n"
            "i) Quitar un n" UACUTE "mero a buscar\n"
            "j) Quitar el primer n" UACUTE "mero\n"
            "k) Ordenar lista\n"
            "l) Invertir lista\n"
            "m) Salir\n\n"
            "Seleccione una opci" OACUTE "n: ");
        do {
            opcion = (char) tolower (_getch ());
        } while (opcion<'a' || opcion>'m');
        if (opcion!='m')
        {
            printf ("%c\n\n", opcion);
            if (cabecera==NULL && opcion!='a' && opcion!='d' && opcion!='f' && opcion!='g')
                printf ("La lista est" AACUTE " vac" IACUTE "a.\n\n");
            else
            {
                if (opcion!='c' && opcion!='d' && opcion!='h')
                {
                    printf ("Lista original:\n");
                    lista_imprimir (cabecera);
                }
                switch (opcion)
                {
                    case 'a': /* Insertar un numero al final */
                        dato = leer_entero ("el n" UACUTE "mero a insertar");
                        cabecera = lista_insertar (cabecera, dato);
                        break;
                    case 'b': /* Quitar el ultimo numero */
                        cabecera = lista_quitar_ultimo (cabecera);
                        break;
                    case 'c': /* Listar numeros */
                        lista_listar (cabecera);
                        putchar ('\n');
                        break;
                    case 'd': /* Tamano de la lista */
                        printf("Tama" NTILDE "o de la lista: %d.\n\n",
                            lista_tamano (cabecera));
                        break;
                    case 'e': /* Vaciar lista */
                        while (cabecera!=NULL)
                            cabecera = lista_quitar_ultimo (cabecera);
                        break;
                    case 'f': /* Insertar numeros aleatorios */
                        dato = leer_entero ("la cantidad de n" UACUTE
                            "meros aleatorios a insertar");
                        for (; dato>0; dato--)
                            cabecera = lista_insertar (cabecera, rand()%1000);
                        break;
                    case 'g': /* Insertar un numero al principio */
                        dato = leer_entero ("el n" UACUTE "mero a insertar");
                        cabecera = lista_insertar_primero (cabecera, dato);
                        break;
                    case 'h': /* Consular si existe un numero */
                        dato = leer_entero ("el n" UACUTE "mero a consultar");
                        printf ("El n" UACUTE "mero %d %s est" AACUTE " en la lista.\n\n",
                            dato, lista_contiene (cabecera, dato) ? "s" IACUTE : "no");
                        break;
                    case 'i': /* Quitar un numero a buscar */
                        dato = leer_entero ("el n" UACUTE "mero a quitar");
                        cabecera = lista_quitar (cabecera, dato);
                        break;
                    case 'j': /* Quitar el primer numero */
                        cabecera = lista_quitar_primero (cabecera);
                        break;
                    case 'k': /* Ordenar lista */
                        lista_ordenar (cabecera);
                        break;
                    case 'l': /* Ivertir lista */
                        cabecera = lista_invertir (cabecera, NULL);
                        break;
                }
                if (opcion!='c' && opcion!='d' && opcion!='h')
                {
                    printf ("Lista actualizada:\n");
                    lista_imprimir (cabecera);
                }
            }
            printf ("Presione una tecla para continuar . . . ");
            _getch ();
        }
    } while (opcion != 'm');
    return EXIT_SUCCESS;
}

Lista lista_insertar (Lista cabecera, int dato)
{
    Lista nodo = (Lista) malloc (sizeof (struct TDALista));
    nodo->liga = cabecera;
    nodo->dato = dato;
    return nodo;
}

Lista lista_quitar (Lista nodo, int dato)
{
    if (nodo!=NULL)
    {
        if (nodo->dato==dato)
            return lista_quitar_ultimo (nodo);
        nodo->liga = lista_quitar (nodo->liga, dato);
    }
    return nodo;
}

void lista_listar (Lista nodo)
{
    if (nodo!=NULL)
    {
        lista_listar (nodo->liga);
        printf ("%d\n", nodo->dato);
    }
}

bool lista_ordenar (Lista nodo)
{
    int dato;
    bool cambio = false;
    if (nodo!=NULL && nodo->liga!=NULL)
    {
        if (nodo->dato < nodo->liga->dato)
        {
            dato = nodo->dato;
            nodo->dato = nodo->liga->dato;
            nodo->liga->dato = dato;
            cambio = true;
        }
        cambio = cambio || lista_ordenar (nodo->liga);
        if (cambio)
            lista_ordenar (nodo);
    }
    return cambio;
}

Lista lista_invertir (Lista nodo, Lista inversa)
{
    if (nodo!=NULL)
    {
        inversa = lista_invertir (nodo->liga, lista_insertar (inversa, nodo->dato));
        free (nodo);
    }
    return inversa;
}

void lista_imprimir (Lista nodo)
{
    if (nodo!=NULL)
    {
        printf ("%d " FLECHA " ", nodo->dato);
        lista_imprimir (nodo->liga);
    }
    else
        printf ("NULL\n\n");
}

int lista_tamano (Lista nodo)
{
    return nodo==NULL ? 0 : 1 + lista_tamano (nodo->liga);
}

Lista lista_insertar_primero (Lista nodo, int dato)
{
    if (nodo==NULL)
        return lista_insertar (NULL, dato);
    nodo->liga = lista_insertar_primero (nodo->liga, dato);
    return nodo;
}

Lista lista_quitar_primero (Lista nodo)
{
    if (nodo!=NULL)
    {
        if (nodo->liga==NULL)
            return lista_quitar_ultimo (nodo);
        nodo->liga = lista_quitar_primero (nodo->liga);
    }
    return nodo;
}

bool lista_contiene (Lista nodo, int dato)
{
    return nodo!=NULL && (nodo->dato==dato || lista_contiene (nodo->liga, dato));
}

Lista lista_quitar_ultimo (Lista nodo)
{
    Lista liga;
    if(nodo!=NULL)
    {
        liga = nodo->liga;
        free (nodo);
        return liga;
    }
    return NULL;
}

int leer_entero (const char *mensaje)
{
    int entero;
    printf ("Ingrese %s: ", mensaje);
    scanf ("%d", &entero);
    (void) getchar();
    putchar ('\n');
    return entero;
}

#ifdef __linux__

int _getch ()
{
    int ch;
    struct termios oldt, newt;
    tcgetattr (STDIN_FILENO, &oldt);
    newt = oldt;
    newt.c_lflag &= ~(ICANON | ECHO);
    tcsetattr (STDIN_FILENO, TCSANOW, &newt);
    ch = getchar();
    tcsetattr (STDIN_FILENO, TCSANOW, &oldt);
    return ch;
}

#endif