-
Notifications
You must be signed in to change notification settings - Fork 0
/
IntQueue_P160_Q4.c
143 lines (126 loc) · 1.87 KB
/
IntQueue_P160_Q4.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#include <stdio.h>
#include <stdlib.h>
#include "IntQueue.h"
// 큐 초기화
int Initialize(IntQueue* q, int max)
{
q->num = 0;
q->front = 0;
q->rear = 0;
if ((q->que = (int*)calloc(max, sizeof(int))) == NULL)
{
q->max = 0;
return -1;
}
q->max = max;
return 0;
}
// 큐에 데이터를 인큐
int Enqueue(IntQueue* q, int x)
{
if (q->num >= q->max)
return -1;
else
{
q->num++;
q->que[q->rear++] = x;
if (q->rear == q->max)
q->rear = 0;
return 0;
}
}
// 큐에 데이터를 디큐
int Dequeue(IntQueue* q, int* x)
{
if (q->num <= 0)
return -1;
else
{
q->num--;
*x = q->que[q->front++];
if (q->front == q->max)
q->front = 0;
return 0;
}
}
// 큐에 데이터를 피크
int Peek(const IntQueue* q, int* x)
{
if (q->num <= 0)
return -1;
*x = q->que[q->front];
return 0;
}
// 모든 데이터 삭제
void Clear(IntQueue* q)
{
q->num = 0;
q->front = 0;
q->rear = 0;
}
// 큐의 최대 용량
int Capacity(const IntQueue* q)
{
return q->max;
}
// 큐에 저장된 데이터 개수
int Size(const IntQueue* q)
{
return q->num;
}
// 큐가 비어 있는가?
int IsEmpty(const IntQueue* q)
{
return q->num <= 0;
}
// 큐가 가득 찼는가?
int IsFull(const IntQueue* q)
{
return q->num >= q->max;
}
// 큐에서 검색
int Search(const IntQueue* q, int x)
{
int i, idx;
for (i = 0; i < q->num; ++i)
{
if (q->que[idx = (i + q->front) % q->max] == x)
return idx;
}
return -1;
}
// 모든 데이터 출력
void Print(const IntQueue* q)
{
int i;
for (i = 0; i < q->num; ++i)
printf("%d ", q->que[(i + q->front) % q->max]);
putchar('\n');
}
// 큐 종료
void Terminate(IntQueue* q)
{
if (q->que != NULL)
free(q->que);
q->max = 0;
q->num = 0;
q->front = 0;
q -> rear = 0;
}
// 임의의 데이터를 검색
int Search2(const IntQueue* q, int x)
{
int idx;
int i = q->front;
int times = 0;
while (times < q->num)
{
if (q->que[i] == x)
{
return times;
}
i = (i + 1) % q->num;
++times;
}
return -1;
}