문 제
정수를 저장하는 큐를 구현한 다음, 입력으로 주어지는 명령을 처리하는 프로그램을 작성하시오.
명령은 총 다섯 가지이다.
- push X: 정수 X를 큐에 넣는 연산이다.
- pop: 큐에서 가장 위에 있는 정수를 빼고, 그 수를 출력한다. 만약 큐에 들어있는 정수가 없는 경우에는 -1을 출력한다.
- size: 큐에 들어있는 정수의 개수를 출력한다.
- empty: 큐이 비어있으면 1, 아니면 0을 출력한다.
- top: 큐의 가장 위에 있는 정수를 출력한다. 만약 큐에 들어있는 정수가 없는 경우에는 -1을 출력한다.
입 력
첫째 줄에 주어지는 명령의 수 N (1 ≤ N ≤ 10,000)이 주어진다. 둘째 줄부터 N개의 줄에는 명령이 하나씩 주어진다. 주어지는 정수는 1보다 크거나 같고, 100,000보다 작거나 같다. 문제에 나와있지 않은 명령이 주어지는 경우는 없다.
15
push 1
push 2
front
back
size
empty
pop
pop
pop
size
empty
pop
push 3
empty
front
출 력
출력해야하는 명령이 주어질 때마다, 한 줄에 하나씩 출력한다.
1
2
2
0
1
2
-1
0
1
-1
0
3
코 드
Queue에는 따로 선입선출 방식이라 front는 알 수 있지만, back은 알 수 없다. 그래서 Enqueue가 될 때마다 따로 선언해준 변수(last)를 갱신하여 “back”이 나올 시 출력해준다! 다른 방식으로 Linq 에서 제공하는 Last() 메서드로 마지막 원소를 가져올 수 있음!
using System;
using static System.Console;
using System.Collections.Generic;
using System.Text;
namespace Algorithm
{
class Program
{
static void Main(string[] args)
{
int N = int.Parse(ReadLine());
Queue<int> queue = new Queue<int>();
StringBuilder sb = new StringBuilder();
int last = -1;
while(N > 0)
{
string[] str = ReadLine().Split(' ');
if(str.Length > 1)
{
if(str[0] == "push")
{
int enqueueNum = int.Parse(str[1]);
queue.Enqueue(enqueueNum);
last = enqueueNum;
}
}
else
{
switch (str[0])
{
case "pop":
sb.AppendLine(queue.Count > 0 ? queue.Dequeue().ToString() : "-1");
break;
case "size":
sb.AppendLine(queue.Count.ToString());
break;
case "empty":
sb.AppendLine((queue.Count == 0 ? 1 : 0).ToString());
break;
case "front":
sb.AppendLine(queue.Count > 0 ? queue.Peek().ToString() : "-1");
break;
case "back":
sb.AppendLine(queue.Count > 0 ? last.ToString() : "-1");
break;
}
}
N--;
}
WriteLine(sb.ToString());
}
}
}
비교코드 - 1
공 부