티스토리 뷰
https://www.acmicpc.net/problem/18258
const fs = require('fs');
const [n,...arr] = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
class Node{
constructor(item){
this.item = item;
this.next = null;
}
}
class Queue{
constructor(){
this.head = null;
this.tail = null;
this.length = 0;
}
push(item){
const node = new Node(item)
if(this.head===null){
this.head= node;
this.head.next = null;
}else{
this.tail.next = node;
}
this.tail = node;
this.length +=1;
}
pop(){
if(this.empty()==1) return -1
const popItem = this.head;
this.head = this.head.next;
this.length -=1;
return popItem.item;
}
size(){
return this.length;
}
empty(){
if(this.length==0){
return 1;
}else{
return 0;
}
}
front(){
if(this.empty()==1) return -1;
return this.head.item;
}
back(){
if(this.empty()==1) return -1;
return this.tail.item;
}
}
let answer = [];
let queue = new Queue();
const command = arr.map(v=>v.split(' '));
command.forEach(v=>{
switch(v[0]){
case 'push':
queue.push(v[1])
break;
case 'pop':
answer.push(queue.pop());
break;
case 'size':
answer.push(queue.size())
break;
case 'empty':
answer.push(queue.empty())
break;
case 'front':
answer.push(queue.front())
break;
case 'back':
answer.push(queue.back())
break;
}
})
console.log(answer.join('\n'))
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1966번 : 프린터 큐 (0) | 2021.09.13 |
---|---|
Node.js) 백준 11866번 : 요세푸스 문제 0 (0) | 2021.09.13 |
Node.js) 백준 17298 : 오큰수 ★ (0) | 2021.09.13 |
Node.js) 백준 1874번 : 스택 수열 (0) | 2021.09.13 |
Node.js) 백준 4949번 : 균형 잡힌 세상 (0) | 2021.09.13 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 롱베케이션
- 투포인터
- 동적프로그래밍
- 개발자면접
- 다이나밍프로그래밍
- 투포인터 연습
- DB 생성
- MySQL
- create databases;
- 다이나믹프로그래밍
- create db
- 면접질문
- 면접비
- node.js
- 로드나인
- 은둔청년체험
- BFS
- 그래프
- 서버점검
- 서버개발
- MOD
- 최소공통조상
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함