-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod_lista_ligada.c
161 lines (120 loc) · 3.13 KB
/
mod_lista_ligada.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
#include <stdlib.h>
#include "mod_lista_ligada.h"
#include <string.h>
#include <stdio.h>
/*--------------------------------------------------------*/
/* Módulo de Lista Ligada -> Funções sobre Listas Ligadas */
/*--------------------------------------------------------*/
MainListPTR criaListaLigada(int(*func_compare)(void*,void*))
{
MainListPTR novo;
if((novo= (MainListPTR) malloc(sizeof (struct MainList)))==NULL) return NULL;
novo->elems = NULL;
novo->nelems = 0;
novo->func_compare=func_compare;
return novo;
}
int insereListaInicio(MainListPTR lista, void *externdata)
{
LinkedListPTR novo;
if ((novo =(LinkedListPTR) malloc(sizeof(struct linkedList)))==NULL) return 0;
novo->extdata = externdata;
novo->prox = lista->elems;
lista->elems = novo;
lista->nelems++;
return 1;
}
int insereListaOrdenado (MainListPTR lista, void *externdata)
{
MainListPTR aux = lista;
LinkedListPTR novo, anterior = NULL, actual = aux->elems;
if((novo =(LinkedListPTR) malloc(sizeof(struct linkedList)))==NULL) return 0;
novo->extdata = externdata;
novo->prox = NULL;
while ((actual!=NULL) && ((aux->func_compare(novo->extdata,actual->extdata))!=-1))
{
anterior = actual;
actual = actual->prox;
}
if (anterior==NULL)
{
novo->prox = aux->elems;
aux->elems=novo;
aux->nelems++;
}
else
{
novo->prox=actual;
anterior->prox = novo;
aux->nelems++;
}
return 1;
}
void apagaElemento (LinkedListPTR *elem)
{
free (*elem);
*elem=NULL;
}
int apagaElementoLista (MainListPTR lista, void* externdata)
{
LinkedListPTR ant = NULL, actelem= lista->elems;
int apagado=0;
if (actelem==NULL) return 0;
if (lista->func_compare(actelem->extdata, externdata)==0)
{
lista->elems=lista->elems->prox;
apagaElemento(&actelem);
lista->nelems--;
apagado=1;
}
else
{
while (actelem!=NULL && (lista->func_compare(actelem->extdata, externdata)!=0))
{
ant=actelem;
actelem=actelem->prox;
}
if (actelem!=NULL)
{
ant->prox=actelem->prox;
apagaElemento(&actelem);
lista->nelems--;
apagado=1;
}
}
return apagado;
}
LinkedListPTR procuraElementoLista (MainListPTR lista, void *externdata)
{
LinkedListPTR aux= lista->elems;
while(aux!=NULL)
{
if (lista->func_compare(aux->extdata,externdata)==0)
return aux;
aux=aux->prox;
}
return NULL;
}
void aplicaFuncLista(MainListPTR lista, void (*applyFunction)(void *, void *), void *parametros)
{
LinkedListPTR aux = lista->elems;
while (aux != NULL) {
applyFunction(aux->extdata, parametros);
aux = aux->prox;
}
}
void apagaListaAux(LinkedListPTR *lista)
{
LinkedListPTR aux;
while (*lista!=NULL)
{
aux=*lista;
*lista=(*lista)->prox;
apagaElemento(&aux);
}
}
void apagaLista(MainListPTR lista)
{
apagaListaAux(&(lista->elems));
lista->nelems=0;
}