-
Notifications
You must be signed in to change notification settings - Fork 0
/
FilaAscendente.c++
201 lines (170 loc) · 4.66 KB
/
FilaAscendente.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
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
//Questao 2:
//Implemente uma fila de prioridade ascendente e suas
//operacoes, pqinsert, pqmindelete e empty, usando
//cada um dos quatro metodos apresentados no texto.
//A questao 3 estah inclusa nesse algoritmo:
//Demonstre como classificar um conjunto de numeros de entrada usando
//uma fila de prioridade e as operacoes pqinsert, pqmindelete e empty.
#include <stdlib.h>
#include <stdio.h>
#include <limits.h>
typedef struct sElemento{
struct sElemento *next;
struct sElemento *prev;
int dado;
} Elemento;
typedef struct sApq{
struct sElemento *front;
struct sElemento *rear;
int size;
} Apq;
Apq *criaFila();
void pqInsert(Apq *apq, int dado);
void pqMinDelete(Apq *apq);
void empty(Apq *apq);
void mostraFila(Apq *apq);
void destroiFila(Apq *apq);
main(){
Apq *apq= criaFila();
empty(apq);
pqInsert(apq, 10);
pqInsert(apq, 20);
pqInsert(apq, 30);
pqInsert(apq, 40);
pqInsert(apq, 5);
pqInsert(apq, 6);
pqInsert(apq, 7);
pqInsert(apq, 8);
pqInsert(apq, 9);
pqInsert(apq, 10);
pqInsert(apq, 1);
pqInsert(apq, 2);
pqInsert(apq, 3);
pqInsert(apq, 4);
pqInsert(apq, 5);
pqInsert(apq, 6);
pqInsert(apq, 7);
pqInsert(apq, 8);
pqInsert(apq, 9);
mostraFila(apq);
pqMinDelete(apq);
mostraFila(apq);
empty(apq);
pqMinDelete(apq);
pqMinDelete(apq);
pqMinDelete(apq);
pqMinDelete(apq);
pqMinDelete(apq);
pqMinDelete(apq);
pqMinDelete(apq);
pqMinDelete(apq);
mostraFila(apq);
destroiFila(apq);
mostraFila(apq);
}
Apq *criaFila(){
Apq *apq = (Apq*)malloc(sizeof(Apq));
apq->front = NULL;
apq->rear = NULL;
apq->size=0;
return apq;
}
void pqInsert(Apq *apq, int dado){
Elemento *novo_elemento= (Elemento*)malloc(sizeof(Elemento));
novo_elemento->dado= dado;
//se a fila esta vazia, adiciona o primeiro elemento como front e rear da fila
if(apq->size==0){
apq->front=novo_elemento;
apq->front->prev=NULL;
apq->front->next=NULL;
apq->rear=novo_elemento;
}else{
//senao, percorre a fila até encontrar o ultimo elemento e adiciona elemento
Elemento *aux= apq->front;
for(int i=0; i < apq->size; i++){
if(aux->next==NULL){
novo_elemento->prev=aux;
novo_elemento->next=NULL;
aux->next=novo_elemento;
break;
}
aux=aux->next;
}
}
apq->size++;
printf("Elemento %i adicionado!\n", novo_elemento->dado);
}
void pqMinDelete(Apq *apq){
if((apq->front!=NULL)and(apq->size!=0)){
Elemento *aux= apq->front;
Elemento *auxDelete=NULL;
int i=0;
int aux2=INT_MAX;
//pesquisa qual elemento é o menor
for( i ; i < apq->size; i++){
if(aux->dado <= aux2){
aux2= aux->dado;
auxDelete=aux;
}
aux=aux->next;
}
//procedimento para remover o elemento menor
if(auxDelete== apq->front){
apq->front = auxDelete->next;
if(apq->front==NULL){
apq->rear=NULL;
}else{
auxDelete->next->prev=NULL;
}
}else{
auxDelete->prev->next = auxDelete->next;
if(auxDelete->next==NULL){
apq->rear=auxDelete->prev;
}else{
auxDelete->next->prev = auxDelete->prev;
}
}
printf("Menor elemento %i excluido!\n", auxDelete->dado);
free(auxDelete);
apq->size--;
}else{
printf("Nao foi possivel excluir elemento: nenhum elemento na fila!\n");
}
}
void empty(Apq *apq){
bool empty;
if(apq->size==0){
empty=true;
}else{
empty=false;
}
printf("\nEmpty: %s\n", empty ? "true" : "false");
}
void mostraFila(Apq *apq){
Elemento *aux= apq->front;
printf("\n\nFila: %i elementos\n", apq->size);
printf("Front <- <- <- <-\n");
for(int i=0; i < apq->size; i++){
printf("%i ",aux->dado);
aux=aux->next;
}
printf("\n\n");
}
void destroiFila(Apq *apq){
Elemento *auxDestroiElementos;
printf("\n\n");
//todos os elementos sao destruidos pelo head
while(apq->size>0){
auxDestroiElementos= apq->front;
apq->front = auxDestroiElementos->next;
if(apq->front==NULL){
apq->rear=NULL;
}else{
auxDestroiElementos->next->prev=NULL;
}
printf("Elemento destruido: %i\n", auxDestroiElementos->dado);
free(auxDestroiElementos);
apq->size--;
}
free(apq);
}