-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path08-fila-dinamica.c
113 lines (76 loc) · 1.51 KB
/
08-fila-dinamica.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
// importando pacotes
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <malloc.h>
// implementando estruturas
typedef struct str
{
int chave;
struct str* prox;
} NO;
typedef struct
{
NO* inicio;
NO* fim;
} FILA_DINAMICA;
// declarando funcoes
void inicializacao(FILA_DINAMICA *f);
void inserir(FILA_DINAMICA *f, int ch);
void exibir(FILA_DINAMICA *f);
int tamanho(FILA_DINAMICA *f);
int retirar(FILA_DINAMICA *f);
// implementando funcoes
void inicializacao(FILA_DINAMICA *f)
{
f->inicio = NULL;
f->fim = NULL;
}
void exibir(FILA_DINAMICA *f)
{
NO* aux = f->inicio;
while(aux != NULL)
{
printf("%d ", aux->chave);
aux = aux->prox;
}
}
int tamanho(FILA_DINAMICA *f)
{
int tam = 0;
NO* aux = f->inicio;
while(aux != NULL)
{
aux = aux->prox;
tam++;
}
return (tam);
}
void inserir(FILA_DINAMICA *f, int ch)
{
NO* novo = (NO*) malloc(sizeof(NO));
novo->chave = ch;
novo->prox = NULL;
if(f->inicio == NULL) f->inicio = novo; // lista vazia
else f->fim->prox = novo; // lista com elem
f->fim = novo;
}
int retirar(FILA_DINAMICA *f)
{
if(f->inicio == NULL)
{
return (-1); // lista vazia
} else {
int resp = f->inicio->chave;
NO* aux = f->inicio;
f->inicio = f->inicio->prox;
free(aux);
if(f->inicio == NULL) f->fim = NULL;
return (resp);
}
}
// funcao main
int main()
{
return 0;
}