https://www.acmicpc.net/problem/10845
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main{
public static int[] queue = new int[10000];
public static int front = 0;
public static int back = -1;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
int n = Integer.parseInt(br.readLine());
for(int i=0; i<n; i++){
StringTokenizer st = new StringTokenizer(br.readLine());
String str = st.nextToken();
switch(str){
case "push":
push(Integer.parseInt(st.nextToken()));
break;
case "pop":
sb.append(pop()).append("\n");
break;
case "size":
sb.append(size()).append("\n");
break;
case "empty":
sb.append(empty()).append("\n");
break;
case "front":
sb.append(front()).append("\n");
break;
case "back":
sb.append(back()).append("\n");
}
}
System.out.println(sb);
}
public static void push(int item){ // 정수 X를 큐에 넣는다.
queue[++back] = item;
}
public static int pop(){ // 큐에서 가장 앞에 있는 정수를 빼고, 그 수를 출력한다. 만약 큐에 들어있는 정수가 없는 경우에는 -1을 출력한다.
if(size()==0) return -1;
else return queue[front++];
}
public static int size(){ // 큐에 들어있는 정수의 개수를 출력한다.
return back-front+1;
}
public static int empty(){ // 큐가 비어있으면 1, 아니면 0을 출력한다.
if(size()==0) return 1;
else return 0;
}
public static int front(){ // 큐의 가장 앞에 있는 정수를 출력한다. 만약 큐에 들어있는 정수가 없는 경우에는 -1을 출력한다.
if(size()==0) return -1;
else return queue[front];
}
public static int back(){ // 큐의 가장 뒤에 있는 정수를 출력한다. 만약 큐에 들어있는 정수가 없는 경우에는 -1을 출력한다.
if(size()==0) return -1;
else return queue[back];
}
}
'ALGORITHM' 카테고리의 다른 글
[JAVA] 백준 1406번- 에디터 (0) | 2022.10.07 |
---|---|
[JAVA] 백준 10866번- 덱 (0) | 2022.10.05 |
[JAVA] 백준 9093번- 단어 뒤집기 (0) | 2022.10.04 |
[JAVA] 백준 10828번- 스택 (0) | 2022.10.04 |
[JAVA] 백준 1388번- 바닥 장식 (0) | 2022.10.03 |