forked from kelvins/algorithms-and-data-structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DynamicQueue.c
72 lines (61 loc) · 1.11 KB
/
DynamicQueue.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
/*
* Implementação de uma Estrutura de Fila Dinâmica Ligada/Encadeada em C
*/
#include <stdio.h>
#include <malloc.h>
typedef int TIPOCHAVE;
typedef struct NO{
TIPOCHAVE chave;
struct NO* prox;
}*PONT;
PONT novoNO(TIPOCHAVE ch){
PONT aux = (PONT) malloc( sizeof(NO) );
aux->chave = ch;
aux->prox = NULL;
return aux;
}
PONT insere(TIPOCHAVE ch, PONT no){
PONT aux = novoNO(ch);
aux->prox = no;
return aux;
}
void mostraFila(PONT no){
while(no != NULL){
printf("[%d]->", no->chave);
no = no->prox;
}
printf("\n");
}
void remove(PONT no){
PONT noAnterior = no;
while(no->prox != NULL){
noAnterior = no;
no = no->prox;
}
noAnterior->prox = NULL;
free(no);
}
int tamanhoFila(PONT no){
int cont = 0;
while(no != NULL){
cont++;
no = no->prox;
}
return cont;
}
int main(){
PONT fila = novoNO(5);
fila = insere(8, fila);
fila = insere(1, fila);
fila = insere(3, fila);
fila = insere(5, fila);
fila = insere(4, fila);
fila = insere(2, fila);
mostraFila(fila);
remove(fila);
mostraFila(fila);
remove(fila);
mostraFila(fila);
printf("Tamanho da fila: %d\n", tamanhoFila(fila) );
return 0;
}