-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircbuf.c
81 lines (81 loc) · 1.2 KB
/
circbuf.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
#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
int main()
{
long n;
scanf("%ld\n", &n);
long *queue = malloc(4*sizeof(long));
memset(queue, 0, 4*sizeof(long));
long l = 4;
long start = 0;
long end = 0;
long qc = 0;
for (long i = 0; i < n; i++)
{
char s[25];
gets(s);
if (s[0] == 'D' && s[1] == 'E' && s[2] == 'Q')
{
long res = queue[start];
start++;
if (start == l)
{
start = 0;
}
qc--;
printf("%ld\n", res);
}
else if (s[0] == 'E' && s[1] == 'N' && s[2] == 'D')
{
long h = strtol(s+3, NULL, 10);
if (qc == l)
{
l = l*2;
long *c = malloc(l*sizeof(long));
memset(c, 0, l*sizeof(long));
for (int j = 0; j < l/2; j++)
{
if (j<end)
{
c[j] = queue[j];
}
else
{
c[j+n/2-1] = queue[j];
if (j == start)
{
start+=n/2-1;
}
}
}
free(queue);
queue = c;
}
queue[end] = h;
end++;
qc++;
if (end == l && qc != l)
{
end = 0;
}
}
else
{
if (qc == 0)
{
printf("true\n");
}
else
{
printf("false\n");
}
}
}
free(queue);
printf("%ld\n", l);
printf("%ld\n", qc);
return 0;
}