-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstacks.ts
74 lines (57 loc) · 1.15 KB
/
stacks.ts
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import { Node } from './node';
export class Stack<T> {
constructor(public top: Node<T> | null = null, public size: number = 0) {
this.top = top;
this.size = size;
}
isEmpty() {
return this.top === null;
}
push(value: T) {
const newNode = new Node(value);
if (this.top) {
newNode.setNextNode(this.top);
}
this.top = newNode;
this.size++;
}
pop() {
if (this.isEmpty()) {
throw new Error('Stack is empty');
}
const topNode = this.top;
if (topNode) {
this.top = topNode.getNextNode();
this.size--;
}
}
peek() {
if (this.isEmpty()) {
throw new Error('Stack is empty');
}
return this.top?.getValue();
}
}
export class ArrayBasedStack<T> {
constructor(public stack: T[] = []) {
this.stack = stack;
}
isEmpty() {
return this.stack.length === 0;
}
push(value: T) {
this.stack.push(value);
}
pop() {
if (this.isEmpty()) {
throw new Error('Stack is empty');
}
this.stack.pop();
}
peek() {
if (this.isEmpty()) {
throw new Error('Stack is empty');
}
return this.stack[this.stack.length - 1];
}
}