-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlista.c
116 lines (99 loc) · 2.28 KB
/
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
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
#include <stdio.h>
#include <stdlib.h>
typedef struct Lponto{
int valor;
struct Lponto *next;
}Lponto;
typedef struct{
Lponto *ini;
int tam;
}List;
void List_inicia(){
List lista;
lista.ini = NULL;
lista.tam = 0;
}
void inserir(List *lista, int valor){
Lponto *new = (Lponto*)malloc(sizeof(Lponto));
new->valor = valor;
new->next = lista->ini;
lista->ini = new;
lista->tam++;
}
void inserir_final(List *lista, int valor){
Lponto *no, *new = (Lponto*)malloc(sizeof(Lponto));
new->valor = valor;
new->next = NULL;
if(lista->ini == NULL){
lista->ini = new;
}else{
no = lista->ini;
while (no->next != NULL)
no = no->next;
no->next = new;
}
lista->tam++;
}
void Remove_list(List *lista, int valor){
Lponto *ini = lista->ini;
Lponto * removido = NULL;
if(lista-> ini != NULL && lista->ini->valor == valor){
removido = lista->ini;
lista->ini = removido->next;
}else{
while (ini != NULL && ini->next != NULL && ini->next->valor != valor){
ini = ini->next;
}
if(ini != NULL && ini->next != NULL){
removido = ini->next;
ini->next = removido->next;
}
}
if(removido){
free(removido);
lista->tam--;
}
}
void impri(List *lista){
Lponto *ini = lista->ini;
while (ini != NULL){
printf("%d ", ini->valor);
ini = ini->next;
}
printf("\n\n");
}
int main(){
List lista;
int opc, valor;
List_inicia();
do{
printf("1- Inserir no início\n2- Imprimir\n3- Inserir no fim\n4- Remover\n5- Sair\n");
scanf("%d", &opc);
switch (opc){
case 1:
printf("Valor a ser inserido: ");
scanf("%d", &valor);
inserir(&lista, valor);
break;
case 2:
impri(&lista);
break;
case 3:
printf("Valor a ser inserido: ");
scanf("%d", &valor);
inserir_final(&lista, valor);
break;
case 4:
printf("Valor a ser removido: ");
scanf("%d", &valor);
Remove_list(&lista, valor);
break;
case 5:
printf("Encerrando\n");
default:
printf("Erro\n");
break;
}
}while(opc != 5);
return 0;
}