Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 정수내림차순으로배치하기
- 연결요소의개수
- 인강
- 한국재정정보원
- 웹프로그래밍
- 알고리즘
- CSS
- 확인문제
- 공부
- HTML
- algorithm
- 필기
- 프로그래머스
- 필기후기
- 부스트코스
- 이클립스
- 웹
- 농은면접
- 중소기업면접
- java
- 프로그래밍언어
- 후기
- 수박수박수박수박수?
- 웹개발
- 건보필기
- 코딩
- 프로그래밍
- 백준
- Linux
- BOJ
Archives
- Today
- Total
공부하는 히욤이
[BOJ] 10845. 큐 본문
BaekJoon 10845. 큐
* 문제의 저작권은 BOJ 및 문제를 만든 사람에게 있습니다.
[문제 접근]
답이 안맞아서 한참 헤맸는데 push 할 때는 출력을 안해도 됐었다.
Queue를 이용하는 문제지만 queue에 대한 이해만 있다면 굳이 큐를 이용하지 않고 ArrayList를 이용해서 풀수도 있었다.
[코드]
- ArrayList
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
ArrayList<Integer> queue = new ArrayList<>();
int num = 0;
for (int i = 0; i < n; i++) {
String command = sc.next();
switch (command) {
case "push":
num = sc.nextInt();
queue.add(num);
break;
case "pop":
if (queue.isEmpty()) {
System.out.println("-1");
} else {
System.out.println(queue.remove(0));
}
break;
case "size":
System.out.println(queue.size());
break;
case "empty":
if (queue.isEmpty()) {
System.out.println("1");
} else {
System.out.println("0");
}
break;
case "front":
if (queue.isEmpty()) {
System.out.println("-1");
} else {
System.out.println(queue.get(0));
}
break;
case "back":
if (queue.isEmpty()) {
System.out.println("-1");
} else {
System.out.println(queue.get(queue.size()-1));
}
break;
}
}
}
}
- Queue
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
Queue<Integer> queue = new LinkedList<>();
int num = 0;
for (int i = 0; i < n; i++) {
String command = sc.next();
switch (command) {
case "push":
num = sc.nextInt();
queue.add(num);
break;
case "pop":
if (queue.isEmpty()) {
System.out.println("-1");
} else {
System.out.println(queue.poll());
}
break;
case "size":
System.out.println(queue.size());
break;
case "empty":
if (queue.isEmpty()) {
System.out.println("1");
} else {
System.out.println("0");
}
break;
case "front":
if (queue.isEmpty()) {
System.out.println("-1");
} else {
System.out.println(queue.peek());
}
break;
case "back":
if (queue.isEmpty()) {
System.out.println("-1");
} else {
System.out.println(num);
}
break;
}
}
}
}
'Algorithm > BaekJoon' 카테고리의 다른 글
[BOJ] 10866. 덱 (0) | 2020.02.08 |
---|---|
[BOJ] 1158. 요세푸스 문제 (0) | 2020.02.08 |
[BOJ] 1406. 에디터 (0) | 2020.02.07 |
[BOJ] 1874. 스택 수열 (2) | 2020.02.07 |
[BOJ] 9093. 단어 뒤집기 (0) | 2020.02.06 |