[Baekjoon] Class2 32 - 큐 [10845]
큐 [10845번]
정수를 저장하는 큐를 구현한 다음, 입력으로 주어지는 명령을 처리하는 프로그램을 작성하시오.
명령은 총 여섯 가지이다.
- push X: 정수 X를 큐에 넣는 연산이다.
- pop: 큐에서 가장 앞에 있는 정수를 빼고, 그 수를 출력한다. 만약 큐에 들어있는 정수가 없는 경우에는 -1을 출력한다.
- size: 큐에 들어있는 정수의 개수를 출력한다.
- empty: 큐가 비어있으면 1, 아니면 0을 출력한다.
- front: 큐의 가장 앞에 있는 정수를 출력한다. 만약 큐에 들어있는 정수가 없는 경우에는 -1을 출력한다.
- back: 큐의 가장 뒤에 있는 정수를 출력한다. 만약 큐에 들어있는 정수가 없는 경우에는 -1을 출력한다.
입력
첫째 줄에 주어지는 명령의 수 N (1 ≤ N ≤ 10,000)이 주어진다. 둘째 줄부터 N개의 줄에는 명령이 하나씩 주어진다. 주어지는 정수는 1보다 크거나 같고, 100,000보다 작거나 같다. 문제에 나와있지 않은 명령이 주어지는 경우는 없다.
출력
출력해야하는 명령이 주어질 때마다, 한 줄에 하나씩 출력한다.
생각해볼점
큐에 대한 내용은 이전에 프린터 큐 문제에서 다룬 적이 있다.
이번 문제에서 명령을 받을 때 현재는 strcmp
함수를 이용했지만, 단순하게 한글자만 비교해서 처리하는 방법도 있었다.
또 큐를 구현하기 위해 연결리스트를 사용했는데, 문제에서 요구하는대로 출력만 하고자 할 경우에는 훨씬 더 간단하게 일차원 배열을 사용하는 방법도 가능했다. 다만 이 방법은 말 그대로 문제를 풀기 위함이지, 정상적으로 데이터가 저장되고 삭제되는 큐의 자료구조를 구현한 것은 아니다.
코드 구현
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct queue
{
int num;
struct queue *next;
} que;
static void push_queue(que *head, int push_temp)
{
que *new;
while (head->next)
head = head->next;
new = (que *)malloc(sizeof(que));
new->num = push_temp;
new->next = NULL;
head->next = new;
}
static void pop_queue(que *head)
{
que *temp;
if (!head->next)
{
printf("-1\n");
return ;
}
temp = head->next;
printf("%d\n", temp->num);
head->next = head->next->next;
free(temp);
}
static void size_queue(que *head)
{
int count = 0;
while (head->next)
{
count++;
head = head->next;
}
printf("%d\n", count);
}
static void back_queue(que *head)
{
if (!head->next)
{
printf("-1\n");
return ;
}
while (head->next)
head = head->next;
printf("%d\n", head->num);
}
int main()
{
int num, idx, push_temp;
char order[10];
que *head;
scanf("%d", &num);
head = (que *)malloc(sizeof(que));
head->next = NULL;
idx = 0;
while (idx < num)
{
scanf("%s", order);
if (strcmp(order, "push") == 0)
{
scanf("%d", &push_temp);
push_queue(head, push_temp);
}
else if (strcmp(order, "pop") == 0)
pop_queue(head);
else if (strcmp(order, "size") == 0)
size_queue(head);
else if (strcmp(order, "empty") == 0)
{
if (!head->next)
printf("1\n");
else
printf("0\n");
}
else if (strcmp(order, "front") == 0)
{
if (!head->next)
printf("-1\n");
else
printf("%d\n", head->next->num);
}
else if (strcmp(order, "back") == 0)
back_queue(head);
idx++;
}
return (0);
}