-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlista.c
executable file
·172 lines (158 loc) · 3.9 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
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
#include "lista.h"
lista *cria_lista(void) {
lista *no = malloc(sizeof(lista));
if (!no)
falha_aloc();
/*n define chaves aqui n. pode ser o sentinela */
no->prox = NULL;
no->insere = &insere_na_lista;
no->remove = &remove_da_lista;
return no;
}
lista *compara_maior( lista *novo, lista *ant, lista *perc, lista *xlista) {
novo->prox = ant->prox;
ant->prox = novo;
if (perc == xlista->prox)
xlista->prox = novo;
return xlista;
}
lista *insere_na_lista(lista *xlista, caixa *xcaixa) {
if (xcaixa) {
lista *novo = cria_lista();
novo->comando = xcaixa;
/*1o caso: primeiro elemento interessante da lista*/
if (!(xlista->prox)) {
xlista->prox = novo;
novo->prox=novo;
return xlista;
}
/*2o caso: ha um elemento interessante na lista, no minimo*/
if (xlista->prox) {
lista *perc, *ant;
bool inseriu = false;
ant = perc = xlista->prox;
while (ant->prox != perc)
ant = ant->prox;
while (inseriu == false) {
/*1o subcaso*/
if(perc->comando->x > novo->comando->x) {
xlista = compara_maior(novo, ant, perc, xlista);
inseriu = true;
return xlista;
}
/*2o subcaso*/
else if(perc->comando->x < novo->comando->x) {
if (perc->prox == xlista->prox){ /*jah checou toda a lista*/
novo->prox = perc->prox;
perc->prox = novo;
inseriu = true;
return xlista;
}
else {
ant = perc;
perc = perc->prox;
}
}
else if(perc->comando->x == novo->comando->x) {
/*1o subcaso*/
if (perc->comando->y > novo->comando->y){
xlista = compara_maior(novo, ant, perc, xlista);
inseriu = true;
return xlista;
}
/*2o subcaso*/
else {
if (perc->prox == xlista->prox){
novo->prox = perc->prox;
perc->prox = novo;
inseriu = true;
return xlista;
}
else {
ant = perc;
perc = perc->prox;
}
}
}
}
}
}
return xlista;
}
caixa *remove_textos(caixa *xcaixa, unsigned int num_strings){
unsigned int i;
if(xcaixa->texto){
for(i = 0;i < num_strings;i++)
free(xcaixa->texto[i]);
free(xcaixa->texto);
}
return xcaixa;
}
void free_caixa(caixa **xcaixa){
unsigned int num = (*xcaixa)->altura;
if ((*xcaixa)->subcaixa){
(*xcaixa)->subcaixa=remove_textos((*xcaixa)->subcaixa,(*xcaixa)->subcaixa->altura);
free((*xcaixa)->subcaixa);
}
if(((*xcaixa)->identificador == TEXTBOX) || ((*xcaixa)->identificador == LABEL)
|| ((*xcaixa)->identificador == CHECKBOX) || ((*xcaixa)->identificador == ITEM))
num = 1;
(*xcaixa) = remove_textos((*xcaixa),num);
free((*xcaixa));
}
lista *remove_itens(lista *xelem){
unsigned int i;
for(i=0;i<xelem->comando->numitens;i++)
free_caixa(&(xelem->comando->vet[i]));
free(xelem->comando->vet);
return xelem;
}
void free_elem(lista **xelem){
if ((*xelem)->comando->identificador == MENUBAR)
(*xelem)=remove_itens(*xelem);
free_caixa(&((*xelem)->comando));
free(*xelem);
}
lista *remove_da_lista(lista *xlista, unsigned int poslist) {
if (xlista->prox) {
lista *perc = xlista->prox;
int achou = false;
do {
if (perc->prox->comando->poslista == poslist) {
lista *xelem;
if (perc->prox == xlista->prox) {
if (perc->prox == perc){
xelem = perc->prox;
xlista->prox = NULL;
}
else {
xlista->prox = perc->prox->prox;
xelem = perc->prox;
perc->prox = xlista->prox;
}
}
else {
xelem = perc->prox;
perc->prox=perc->prox->prox;
}
/*pressupoe caixa alocada*/
free_elem(&xelem);
achou = true;
}
else
perc = perc->prox;
}
while ((perc != xlista->prox) && (!achou));
}
return xlista;
}
void free_lista(lista **l){
while ((*l)->prox)
*l=remove_da_lista(*l,(*l)->prox->comando->poslista);
free(*l);
}
lista *proxima_caixa_disp(lista *elem) {
lista *aux;
for(aux = elem->prox; (aux->comando->disponibilidade == false) && (aux != elem); aux = aux->prox);
return aux;
}