-
Notifications
You must be signed in to change notification settings - Fork 2
/
lista.c
50 lines (44 loc) · 892 Bytes
/
lista.c
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
/* lista.c
*
* Implementação das operações sobre o TAD lista ordenada implementada
* de forma encadeada.
*
*
*/
#include "lista.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
void lst_init(lst_ptr * l) {
*l = NULL;
}
void lst_ins(lst_ptr * l, lst_info val) {
lst_ptr n;
if ((n = (lst_ptr) malloc(sizeof(struct lst_no))) == NULL) {
fprintf(stderr, "Erro de alocacao de memoria!\n");
exit(1);
}
n->dado = val;
if (*l == NULL) {
n->prox = *l;
*l = n;
return;
}
else {
lst_ptr p = *l;
while (p->prox != NULL) {
p = p->prox;
}
n->prox = p->prox;
p->prox = n;
return;
}
}
void lst_print(lst_ptr l) {
printf("[ ");
while (l != NULL) {
printf("%d ,", l->dado);
l = l->prox;
}
printf("\b ]\n");
}