-
Notifications
You must be signed in to change notification settings - Fork 0
/
queue.cpp
110 lines (95 loc) · 1.66 KB
/
queue.cpp
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
#include <stdio.h>
#include<malloc.h>
int front;//배낼 주소를 가르킴
int rear;//들어갈 주소를 가르킴
int * queue;//크기는 max
int MAX_N = 10;
void queueInit(void)//초기화는 프론트와 리어를 0으로
{
front = 0;
rear = 0;
queue = (int *)malloc(sizeof(int)*MAX_N);
}
int queueIsEmpty(void)
{
return (front == rear);//같으면 빈거
}
int queueIsFull(void)
{
if ((rear + 1) % MAX_N == front)//리어+1의 나머지가 크기를 넘어가면
{
MAX_N*=2;//2배 확장
int * temp = (int *)malloc(sizeof(int)*MAX_N);
for (int i = 0; i < MAX_N/2;i++)
{
temp[i] = queue[i];
}
free(queue);
queue = temp;
printf("resize to:%d",MAX_N);
return 1;
}
else
{
return 0;
}
}
int queueEnqueue(int value)
{
if (queueIsFull())//
{
printf("queue is full!");
return 0;
}
queue[rear] = value;//리어에 값을 넣고
rear++;//하나 증가
if (rear == MAX_N)//리어가 최대면
{
rear = 0;//맨 앞으로 , 가득 차지 않았기 때문에 앞에 빔
}
return 1;
}
int queueDequeue(int *value)
{
if (queueIsEmpty())//비엇다면
{
printf("queue is empty!");
return 0;
}
*value = queue[front];//넘겨받은 포인터에 저장
front++;//프론트 증가
if (front == MAX_N)//만약에 끝까지 프론트가 왓다면
{
front = 0;//맨 앞으로
}
return 1;
}
int main(int argc, char* argv[])
{
int T;
int N;
scanf("%d", &T);
for (int test_case = 1; test_case <= T; test_case++)
{
scanf("%d", &N);
queueInit();
for (int i = 0; i < N; i++)
{
int value;
scanf("%d", &value);
queueEnqueue(value);
printf("setValue");
}
printf("#%d ", test_case);
while (!queueIsEmpty())
{
int value;
if (queueDequeue(&value) == 1)
{
printf("%d ", value);
}
}
printf("\n");
}
return 0;
}