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
- back-end
- LEVEL2
- 코틀린
- baekjoon
- 백트래킹
- Brute-force
- backtracking
- 알고리즘
- algorithm
- kotlin
- 자바
- lambda
- 프로그래머스
- 모던자바
- 자료구조
- 운영체제
- TDD
- 네트워크
- programmers
- Spring
- 스프링
- OS
- java
- 프로젝트
- 백준
- Java8
- DFS
- BFS
- 그래프
- DP
Archives
- Today
- Total
요깨비's LAB
[백준, 자료구조, Kotlin] P.10845 큐 본문
import java.io.BufferedReader
import java.io.InputStreamReader
import java.util.*
fun main() {
val br = BufferedReader(InputStreamReader(System.`in`))
val N = br.readLine().toInt()
val queue = LinkedList<Int>()
val sb = StringBuffer()
for (i in 0 until N) {
val command = br.readLine().split(" ")
when {
command[0] == "push" -> {
queue.add(command[1].toInt())
}
command[0] == "pop" -> {
if (queue.isEmpty()) {
sb.append("-1\n")
} else {
sb.append("${queue.poll()}\n")
}
}
command[0] == "size" -> {
sb.append("${queue.size}\n")
}
command[0] == "empty" -> {
if (queue.isEmpty()) {
sb.append("1\n")
} else {
sb.append("0\n")
}
}
command[0] == "front" -> {
if (queue.isEmpty()) {
sb.append("-1\n")
} else {
sb.append("${queue.first}\n")
}
}
command[0] == "back" -> {
if (queue.isEmpty()) {
sb.append("-1\n")
} else {
sb.append("${queue.last}\n")
}
}
}
}
print(sb.toString())
}
'알고리즘(Kotlin) > 자료구조' 카테고리의 다른 글
[백준, 자료구조, Kotlin] P.17298 오큰수 (0) | 2021.09.18 |
---|---|
[백준, 자료구조, Kotlin] P.1158 요세푸스 문제 (0) | 2021.07.08 |
[백준, 자료구조, Kotlin] P.1406 에디터 (0) | 2021.06.02 |
[백준, 자료구조, Kotlin] P.1874 스택 수열 (0) | 2021.06.01 |
Comments