-
Notifications
You must be signed in to change notification settings - Fork 1
/
stack.js
52 lines (39 loc) · 929 Bytes
/
stack.js
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
class Stack {
#items = [];
push(...elements) {
return this.#items.push(...elements);
}
pop() {
return this.#items.pop();
}
peek() {
return this.#items[this.#items.length - 1];
}
isEmpty() {
return this.#items.length === 0;
}
size() {
return this.#items.length;
}
clear() {
this.#items = [];
}
// print는 스택에 쌓인 내용물을 콘솔에서 확인해보는 헬퍼 메소드입니다.
print() {
console.log(this.#items.toString());
}
}
// 스택 인스턴스 생성
var stack = new Stack();
// 빈 스택 여부 확인
console.log("빈 스택 여부:", stack.isEmpty()); // true
// 원소 추가
stack.push(5);
stack.push(8);
// 마지막 원소 조회
console.log("스택의 마지막 원소:", stack.peek()); // 8
// 스택의 크기 확인
console.log("스택의 크기:", stack.size()); // 2
// 스택 비우기
stack.clear();
stack.size(); // 0