티스토리 뷰
문제 요약
- 큐(Queue)를 만들어 보자.
풀이
import Foundation
var queue: [Int] = []
func push(_ x: Int) {
queue.append(x)
}
func pop() -> Int {
if queue.isEmpty {
return -1
} else {
return queue.removeFirst()
}
}
func size() -> Int {
return queue.count
}
func empty() -> Int {
return queue.isEmpty ? 1 : 0
}
func front() -> Int {
return queue.first ?? -1
}
func back() -> Int {
return queue.last ?? -1
}
var N = Int(readLine()!)!
for _ in 0..<N {
let command = readLine()!.split(separator: " ")
switch command[0] {
case "push":
push(Int(command[1])!)
case "pop":
print(pop())
break
case "size":
print(size())
break
case "empty":
print(empty())
break
case "front":
print(front())
break
case "back":
print(back())
break
default:
break
}
}
'Algorithm > 백준' 카테고리의 다른 글
[BOJ] (Swift) 10866 - 덱 (0) | 2022.08.02 |
---|---|
[BOJ] (Swift) 1158 - 요세푸스 문제 (0) | 2022.08.02 |
[BOJ] (Swift) 1406 - 에디터 (0) | 2022.08.01 |
[BOJ] (Swift) 1874 - 스택 수열 (0) | 2022.07.31 |
[BOJ] (Swift) 9012 - 괄호 (0) | 2022.07.28 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- BOJ 10799
- BOJ 10808
- sheetPresentationController
- CAGradientLayer
- BOJ 10820
- Carousel Effect
- 2023 회고
- 요시푸스
- BOJ 17298
- swift
- Card CollectionVIew
- Gradient View
- Stack
- BOJ 1935
- NaverMaps
- ios
- BOJ 10809
- UICollectionView banner
- bottom sheet
- UICollectionView Error
- Custom Detent
- Sheet Height
- BOJ 10866
- autolayout
- git
- Algorithm
- BOJ 17413
- crud
- github
- 1406 에디터
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함