-
Notifications
You must be signed in to change notification settings - Fork 0
/
fila.c
57 lines (36 loc) · 1.17 KB
/
fila.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
#include "commons.h"
#include "info.h"
#include "fila.h"
int main(int argc, char **args)
{
setlocale(LC_ALL, "pt_BR.UTF-8");
printf("\nFILA ENCADEADA\n");
FILA banco;
FILA_inicia(&banco);
INFO x;
x = INFO_set_interativo("Informe o PRIMEIRO(A) da FILA");
FILA_enfileirar(&banco, x);
x = INFO_set_value(222, "Segundo");
FILA_enfileirar(&banco, x);
x = INFO_set_value(333, "Terceiro");
FILA_enfileirar(&banco, x);
x = INFO_set_value(444, "Quarto");
FILA_enfileirar(&banco, x);
x = INFO_set_value(555, "Quinto");
FILA_enfileirar(&banco, x);
FILA_imprime(&banco);
x = FILA_desemfilelar(&banco);
printf("\nDesenfilerado >>> SENHA [ %d ] Nome [ %s ]\n", x.ID, x.nome);
x = FILA_get_primeiro(&banco);
printf("\nPrimerio da FILA >>> SENHA [ %d ] Nome [ %s ]\n\n", x.ID, x.nome);
FILA_drop(&banco);
FILA_imprime(&banco);
x = INFO_set_value(111, "Primeiro");
FILA_enfileirar(&banco, x);
x = INFO_set_value(222, "Segundo");
FILA_enfileirar(&banco, x);
x = INFO_set_value(333, "Terceiro");
FILA_enfileirar(&banco, x);
FILA_imprime(&banco);
return 0;
}