-
Notifications
You must be signed in to change notification settings - Fork 0
/
agenda-encadeada.c
87 lines (75 loc) · 1.86 KB
/
agenda-encadeada.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
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
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
typedef struct pessoa{
char nome[30];
int idade;
int altura;
struct pessoa *next;
}pessoa;
void *insere(pessoa *pessoas){
if(pessoas != NULL){
pessoa *novo, *aux;
aux = pessoas;
novo = (pessoa *) malloc(sizeof(pessoa));
if(novo != NULL){
printf("Digite o nome da pessoa: ");
scanf("%s", &novo->nome);
printf("Digite a idade: ");
scanf("%d", &novo->idade);
printf("Digite a altura em cm: ");
scanf("%d", &novo->altura);
novo->next = NULL;
while(aux->next != NULL)
aux = aux->next;
aux->next = novo;
}else{
printf("Erro de alocacao! ");
}
}else{
printf("Erro de alocacao");
}
}
void imprime(pessoa *pessoas){
pessoa *aux;
aux = pessoas;
if(aux->next != NULL){
aux = aux->next;
printf("==== Agenda ====\n");
while (aux != NULL){
printf("Nome: %s Idade : %d Altura: %d\n",aux->nome,aux->idade,aux->altura);
aux = aux->next;
}
}else{
printf("Não tem nenhuma pessoa na agenda");
}
}
int main (){
pessoa *head;
pessoa *aux;
head = (pessoa *) malloc(sizeof(pessoa));
head->next = NULL;
int n = 0;
while(n != 2){
printf("\nMenu: \n1-Inserir\n2-Sair\n");
scanf("%d",&n);
switch (n){
case 1:
insere(head);
break;
case 2:
imprime(head);
while(head->next != NULL){
aux = head->next;
free(head);
head = aux;
}
free(head);
break;
default:
printf("\nOpcao invalida\n");
break;
}
}
return 0;
}