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