This repository has been archived by the owner on Mar 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLista_Duplamente_encadeada.c
164 lines (147 loc) · 3.38 KB
/
Lista_Duplamente_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
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
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
typedef struct Pessoa{
char nome[20];
int telefone;
}Pessoa;
typedef struct node{
Pessoa p;
struct node *next;
struct node *prev;
}node;
node* create (void);
void adicionar(node *h, Pessoa *p);
void delete_name(node *h, char *s);
void listar(node *h);
int menu(void);
int tamanho(node *h);
void deleta_index(node *h, int n);
void limpa_lista(node *h);
int main(int argc, char const *argv[])
{
node *head;
int i;//indice pra excluir
Pessoa add;//pessoa pra adicionar
char d[20];//nome pra deletar por nome
head = create();
while (1){
switch (menu()){
case 0:
printf("Nome: \n");
scanf("%s", add.nome);
printf("Telefone: \n");
scanf("%d",&add.telefone);
adicionar(head,&add);
break;
case 1:
printf("A lista tem %d elementos. Quer excluir qual? \n", tamanho(head));
scanf("%d",&i);
deleta_index(head,i);
break;
case 2:
printf("Nome que deseja excluir: \n");
scanf("%s",d);
delete_name(head,d);
break;
case 3:
limpa_lista(head);
break;
case 4:
listar(head);
break;
case 5:
free(head);
return 0;
default:
printf("Error. Select again.\n");
}
}
}
void limpa_lista(node *h){
node *count;
for(count = h->next; h->next!=NULL;h= h->next);
for(count; count->prev!=NULL;count = count->prev){
free(count->next);
}
count->next = NULL;//pra não perder a cabeça da lista
}
int menu(void){
int e;
printf("---AGENDA LISTA DUPLAMENTE ENCADEADA---\n");
printf("0 - INSERE PESSOA\n");
printf("1 - DELETA A PESSOA DE ACORDO COM ÍNDICE\n");
printf("2 - DELETA A PESSOA POR NOME\n");
printf("3 - LIMPA A LISTA\n");
printf("4 - LISTA NA TELA TODAS AS PESSOAS\n");
printf("5 - SAIR DO PROGRAMA\n");
scanf("%d",&e);
return e;
}
void deleta_index(node *h, int n){
node *count;
int c;
if(n<0 || n>tamanho(h)){
printf("Invalid Index. Try again\n");
return;
}
for(c=0,count = h;c<n;c++,count = count->next);//onde count parar é a posição que eu tenho que excluir
if(count->next==NULL){//caso eu tenha que excluir o ultimo elemento, se comporta diferente porque a lista é duplamente encadeada
count->prev->next = NULL;
free(count);
}
else{
count->next->prev = count->prev;
count->prev->next = count->next;
free(count);
}
}
int tamanho(node *h){
node* count;
int c;
for(c=0,count=h->next; count!=NULL;c++,count = count->next);
return c;
}
void listar(node *h){
node *count;
if(h->next==NULL){
printf("--EMPTY LIST--\n");
return;
}
for(count= h->next; count!=NULL; count = count->next){
printf("-------------\n");
printf("Name: %s\n",count->p.nome);
printf("Telefone: %d\n",count->p.telefone);
printf("-------------\n");
}
}
void delete_name(node *h, char *s){
node *count;
for (count = h->next;count!=NULL;count = count->next){
if(strcmp(count->p.nome,s)==0){
count->next->prev = count->prev;
count->prev->next = count->next;
free(count);
return;
}
}
printf("Name not found\n");
}
void adicionar(node *h, Pessoa *p){
node *count, *novo;
for(count = h; count->next!=NULL;count= count->next);//acha a última posição
novo = create();
novo->p = *p;
novo->prev = count;
count->next = novo;
}
node* create (void){
node *aux = (node*) malloc (sizeof(node));
if(aux==NULL){
printf("Error\n");
exit(1);
}
aux->prev = NULL;
aux->next = NULL;
return aux;
}