-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLista circular duplamente encadeada ordenada.cpp
368 lines (312 loc) · 7.62 KB
/
Lista circular duplamente encadeada ordenada.cpp
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
#include <iostream>
#include <windows.h>
using namespace std;
typedef struct No // Lista de dados
{
int info;
struct No* ant;
struct No* prox;
} Lista;
Lista* criar() // Cria lista
{
return NULL;
}
bool estaVazia(Lista* list) // funcao para detectar se a lista esta vazia
{
return list == NULL;
}
bool estaPresente(Lista* list, int value) // funcao para detectar se valor esta presente
{
if(estaVazia(list)) // se a lista estiver vazia
{
cout << "-----------------------" << endl;
cout << "Lista vazia" << endl;
cout << "-----------------------" << endl;
return false;
}
else // se tiver conteudo
{
Lista* inicio = list;
Lista* aux = inicio;
do
{
if (aux->info == value)
return true;
aux = aux->prox;
}
while (aux != inicio);
return false;
}
}
void imprimirDoInicioAoFim(Lista* list)
{
if (estaVazia(list))
{
cout << "-----------------------" << endl;
cout << "Lista vazia" << endl;
cout << "-----------------------" << endl;
return;
};
cout << "-----------------------" << endl;
cout << "Imprimindo lista do inicio ao fim" << endl;
cout << "-----------------------" << endl;
Lista* inicio = list;
// percorre a lista enquanto o elemento atual nao for nulo
Lista* aux = inicio;
cout << "-----------------------" << endl;
do
{
cout << aux->info << endl;
aux = aux->prox;
}
while (aux != inicio);
cout << "-----------------------" << endl;
cout << endl;
return;
}
void imprimirDoFimAoInicio(Lista* list)
{
if (estaVazia(list))
{
cout << "-----------------------" << endl;
cout << "Lista vazia" << endl;
cout << "-----------------------" << endl;
return;
};
cout << "-----------------------" << endl;
cout << "Imprimindo lista do fim ao inicio" << endl;
cout << "-----------------------" << endl;
Lista* inicio = list;
// percorre a lista enquanto o elemento atual nao for nulo
Lista* aux = inicio;
aux = aux->ant;
do
{
cout << aux->info << endl;
aux = aux->ant;
}
while (aux != inicio->ant);
cout << "-----------------------" << endl;
cout << endl;
return;
}
Lista* inserir(Lista* list, int valor)
{
// Alocando memoria para o novo item
Lista* novo = new Lista;
novo->info = valor;
cout << "-----------------------" << endl;
cout << "Inserindo novo valor: " << novo->info << endl;
cout << "-----------------------" << endl;
// Casos
if(list == NULL)
{
// Caso 1 lista vazia
novo->prox = novo;
novo->ant = novo;
cout << "-----------------------" << endl;
cout << "Lista vazia. Criando novo elemento." << endl;
cout << "-----------------------" << endl;
}
else if(valor < list->info)
{
// Caso 2 valor do novo->info menor que o list->info
novo->prox = list;
novo->prox->ant = novo;
Lista* aux = list;
while(aux->prox != list)
{
aux = aux->prox;
}
novo->ant = aux;
novo->ant->prox = novo;
cout << "-----------------------" << endl;
cout << "Caso de elemento menor no inicio." << endl;
cout << "-----------------------" << endl;
}
else
{
// Caso 3 - valores iniciais maiores que o valor
Lista* aux = list;
while(aux->prox != list && aux->prox->info < valor)
{
aux = aux->prox;
}
cout << endl;
novo->prox = aux->prox;
novo->prox->ant = novo;
novo->ant = aux;
novo->ant->prox = novo;
cout << "-----------------------" << endl;
cout << "Inserindo elemento maior na frente" << endl;
cout << "-----------------------" << endl;
return list;
}
return novo;
}
Lista* remover(Lista* list, int valor)
{
if (list == NULL)
{
cout << "-----------------------" << endl;
cout << "Tem nada nessa lista, meu parceiro" << endl;
cout << "-----------------------" << endl;
return NULL;
}
else if (list->info == valor)
{
if (list->prox == list)
{
cout << "-----------------------" << endl;
cout << "Bica no valor, foi pro saco!" << endl;
cout << "-----------------------" << endl;
delete list;
return NULL;
}
else
{
Lista* aux = list;
while (aux->prox != list)
aux = aux->prox;
aux->prox = list->prox;
delete list;
cout << "-----------------------" << endl;
cout << "Bica no valor, foi pro saco!" << endl;
cout << "-----------------------" << endl;
return aux->prox;
}
}
else
{
Lista* inicio = list;
Lista* atual = list;
Lista* anterior = NULL;
do
{
anterior = atual;
atual = atual->prox;
if(atual->info == valor)
{
cout << "-----------------------" << endl;
cout << "Bica no valor, foi pro saco!" << endl;
cout << "-----------------------" << endl;
}
else if(atual == inicio)
{
cout << "-----------------------" << endl;
cout << "Não achei, meu senhor" << endl;
cout << "-----------------------" << endl;
}
}
while (atual != inicio && atual->info != valor);
if (atual != inicio)
{
anterior->prox = atual->prox;
delete atual;
}
return list;
}
}
void menu()
{
bool sair = false;
int opcao;
int valor;
cout << "--------------" << endl;
cout << "Uma lista nula foi criada, aoh Goias!" << endl;
cout << "--------------" << endl;
Lista* l = criar();
while(!sair)
{
cout << "--------------" << endl;
cout << "MENU" << endl;
cout << "1. Inserir novo elemento na lista" << endl;
cout << "2. Remover elemento da lista" << endl;
cout << "3. Verificar se um elemento esta na lista" << endl;
cout << "4. Verificar se a lista esta vazia" << endl;
cout << "5. Imprimir do inicio ao fim" << endl;
cout << "6. Imprimir do fim ao inicio" << endl;
cout << "7. Sair" << endl;
cout << "Entre com a opcao desejada: ";
cin >> opcao;
switch(opcao)
{
case 1:
system("cls");
// 1. Inserir novo elemento para lista
cout << "Insira o valor do novo elemento: ";
cin >> valor;
l = inserir(l, valor);
break;
case 2:
system("cls");
// 2. Remover elemento da lista
cout << "Insira o valor do elemento a ser removido: ";
cin >> valor;
l = remover(l, valor);
break;
case 3:
system("cls");
// 3. Verificar se um elemento está na lista
cout << "Pesquisar elemento: ";
cin >> valor;
if(estaPresente(l, valor))
{
cout << "--------------" << endl;
cout << "O elemento esta na lista" << endl;
cout << "--------------" << endl;
}
else
{
cout << "--------------" << endl;
cout << "O elemento NAO esta na lista" << endl;
cout << "--------------" << endl;
};
break;
case 4:
system("cls");
// 4. Verificar se a lista está vazia
if(estaVazia(l))
{
cout << "--------------" << endl;
cout << "Tem nada nao, chefe" << endl;
cout << "--------------" << endl;
}
else
{
cout << "--------------" << endl;
cout << "Ta vazio nao, consagrado" << endl;
cout << "--------------" << endl;
};
break;
case 5:
system("cls");
// 5. Imprimir do inicio ao fim
imprimirDoInicioAoFim(l);
break;
case 6:
system("cls");
// 6. Imprimir do fim ao inicio
imprimirDoFimAoInicio(l);
break;
case 7:
system("cls");
cout << "--------------" << endl;
cout << "Desliga freezer a notche! Voce eh a vergoin da pofission!" << endl;
cout << "--------------" << endl;
sair = true;
// 7. Sair
break;
default:
// Opcao invalida
cout << "--------------" << endl;
cout << "Ai nao meu querido, digita o bagulho certo!" << endl;
cout << "--------------" << endl;
break;
}
}
}
int main()
{
menu();
}