-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfifo.c
68 lines (67 loc) · 1.32 KB
/
fifo.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
#include <stdio.h>
#include <stdlib.h>
int inserir(int *, int, int *, const int, int *);
int remover(int *, int *, int *);
int isVazia(int *, int *);
int inserir(int *fila, int info, int *tail, const int size, int *isCreate)
{
if (*tail == size)
{
return 0;
}
if (*isCreate == 0)
{
fila[*tail] = info;
*isCreate = 1;
return 1;
}
fila[*tail] = info;
*tail = *tail + 1;
return 1;
}
int remover(int *fila, int *tail, int *head)
{
if (!isVazia(head,tail))
{
return 0;
}
int temp = fila[*head];
*head = *head + 1;
return temp;
}
int isVazia(int *head, int *tail)
{
if (*head == *tail)
{
return 0;
}
else
{
return 1;
}
}
int main()
{
const int size = 8;
int fila[size];
int tail_ = 0;
int head_ = 0;
int isCreate_ = 0;
int temp;
int *isCreate;
int *tail;
int *head;
tail = &tail_;
head = &head_;
isCreate = &isCreate_;
for (int i = 0; i < size; i++)
{
//PARA INSERIR OS ITEMS NO ARRAY É SÓ TROCAR "i" PELO VALOR QUE VOCE QUISER
inserir(fila, i, tail, size, isCreate);
}
while(isVazia(head,tail)){ //AQUI ELE REMOVE TODOS OS ITEMS, SÓ PARA DEMOSRAÇÃO
temp= remover(fila,tail,head);
printf("%d",temp);
}
return 0;
}