-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExlista.c
More file actions
184 lines (109 loc) · 2.21 KB
/
Exlista.c
File metadata and controls
184 lines (109 loc) · 2.21 KB
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
#include <stdio.h>
#include <stdlib.h>
typedef struct Elemento{
int num;
struct Elemento *prox;
}TElemento;
typedef struct Lista{
TElemento *inicio;
TElemento *fim;
}TLista;
void inicilizar_lista(TLista *Lista){
Lista->inicio = NULL;
Lista->fim = NULL;
}
void inserir_elemento(TLista *Lista){
TElemento *novo;
novo =(TElemento*) malloc(sizeof(TElemento));
printf("DIGITE UM VALOR\n");
scanf("%d", &novo->num);
novo->prox = NULL;
if(Lista->inicio == NULL){
Lista->inicio = novo;
Lista->fim = novo;
}
else{
Lista->fim->prox = novo;
Lista->fim = novo;
}
}
void remover_elemento(TLista *Lista){
int valor;
TElemento *anterior,*atual;
printf("INFORME O ELEMENTO A SER EXCLUIDO: "); // excluir os elemetos
scanf("%d",&valor);
if (Lista->inicio == NULL){
printf("**LISTA VAZIA**\n");
}
else{
anterior = Lista->inicio;
atual = Lista->inicio;
while(atual !=NULL){
if(atual->num == valor){
if(atual == Lista->inicio){
Lista->inicio = Lista->inicio->prox;
free(atual);
break;
}
else{
if(atual == Lista->fim){
Lista->fim = anterior;
}
anterior->prox = atual->prox;
free(atual);
break;
}
}
else{
anterior = atual;
atual = atual->prox;
}
}
}
}
void apresentar_elemento(TLista *Lista){
TElemento *aux;
printf("\n--RELATORIO DE TODOS OS ELEMENTOS----\n");
if(Lista->inicio == NULL){
printf("**LISTA VAZIA**\n");
}
else{
aux = Lista->inicio;
while(aux != NULL){
printf(" %d", aux->num);
aux = aux->prox;
}
printf("\n--FIM DE LISTA--\n\n");
}
}
int main(){
TLista L1;
inicilizar_lista(&L1);
int op,num =1;
while(num == 1){
printf("\n\tOPCOES \n");
printf("1 - INSERIR UM NOVO ELEMENTO\n");
printf("2 - REMOVER UM ELEMENTO\n");
printf("3 - LISTA TODOS OS ELEMENTOS\n");
printf("0 - PARA SAIR\n\n");
scanf("%d",&op);
switch(op){
case 1:
inserir_elemento(&L1);
break;
case 2:
remover_elemento(&L1);
break;
case 3:
apresentar_elemento(&L1);
break;
case 0:
printf("TCHAU\n");
num = 0;
break;
default:
printf("OPCAO INVALIDA\n");
}
}
return 0;
}