-
Notifications
You must be signed in to change notification settings - Fork 0
/
heap.c
178 lines (148 loc) · 3.63 KB
/
heap.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
#include <stdio.h>
#include <stdlib.h>
//#include <gtk/gtk.h>
#define PAI(i) ((i-1)/2)
typedef struct
{
char nome[20]; //dado do Paciente
int cor;
int chave; //chave do Paciente
} Paciente;
typedef struct
{
Paciente *p; // ponteiro para Paciente[dado,chave]
int n, tamanho; // inteiros contador de Pacientes(n) e o tamanho da estrutura alocada dinamicamente
}PQ;
typedef PQ *P_PQ;
P_PQ criar_filaprio(int tam)
{
P_PQ p_pq = (PQ*) malloc(sizeof(PQ)); // aloca um ponteiro pra PQ de tamanho (PQ)
p_pq->p = (Paciente*)
malloc(tam * sizeof(Paciente)); // aloca um ponteiro para Paciente[dado,chave] dentro do PQ
p_pq->p[0].chave = -1; // inicializa a primeira chave
p_pq->n = 0; // inicializa contador n
p_pq->tamanho = tam; // define o tamanho da fila
return p_pq; // retorna a fila
}
void max_heapify(Paciente *vet, int i, int f)
{
int aux = vet[i].chave;
int j = (i * 2) + 1;
while( j <= f )
{
if( j < f )
{
if( vet[j].chave < vet[j + 1].chave )
{
j = j + 1;
}
}
if( aux < vet[j].chave)
{
vet[i].chave = vet[j].chave;
i = j;
j = (2 * i) + 1;
}else
j = f + 1;
}
vet[i].chave = aux;
}
void heapSort(Paciente *vet, int n)
{
int i, aux;
for( i = (n-1)/2; i >= 0; i--)
{
max_heapify(vet, i, n-1);
}
for( i = n; i >= 1; i-- )
{
aux = vet[0].chave;
vet[0].chave = vet[i].chave;
vet[i].chave = aux;
max_heapify(vet, 0, i-1);
}
}
int verifica_cor(int cor, int k)
{
switch (cor)
{
case 1:
k = k+800;
break;
case 2:
k = k+400;
break;
case 3:
k = k+200;
break;
default:
break;
}
return k;
}
void inserir_chave(Paciente *vet,int index, int *n, int chave)
{
vet[*n].chave = chave;
printf("\n\nchave: %d\n",chave);
max_heapify(vet,index,*n);
heapSort(vet,*n);
(*n)++;
}
void free_memo_fp(P_PQ p_pq)
{
free(p_pq->p);
free(p_pq);
}
void mostra_fp(P_PQ p_pq, Paciente *pac)
{
printf("\n\nHeap Ordenada: \n");
for(int i=0; i < p_pq->n; i++)
{
(i > 0) ?
printf("P[%d] index[%d]: (%d) \n", PAI(i),i,pac[i].chave)
:printf(" Raiz[%d]: (%d) \n", i,pac[i].chave);
}
}
void menu(P_PQ p_pq, Paciente *pac, int *n){
int k;
puts("\nMenu");
puts("1- Cad Pacientes");
puts("2- Mostrar Prox da Fila");
puts("3- Mostrar Fila");
puts("Pressione qualquer numero para encerrar...");
scanf("%d",&k);
switch (k)
{
case 1:
printf("\nNome do Paciente: ");
scanf("%s",pac[*n].nome);
printf("Cores de Atendimento: 1-Azul, 2-Verde, 3-Amarelo, 4-Laranja\n");
printf("Opcao de Cor: ");
scanf("%d",&(pac[*n].cor));
inserir_chave( pac, *n, n, verifica_cor(pac[*n].cor,(*n)+1) );
menu(p_pq, pac, n);
break;
case 2:
// puts("mostrar proximo da fila: ");
//printf("%d \n",remove_fp(p_pq));
menu(p_pq, pac, n);
break;
case 3:
mostra_fp(p_pq, pac);
menu(p_pq, pac, n);
break;
case 4:
break;
default:
break;
}
}
int main()
{
P_PQ p_pq = criar_filaprio(5);
Paciente *pac = p_pq->p;
int *n = &p_pq->n;
menu(p_pq,pac,n);
free(p_pq);
return 0;
}