-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathstack2.js
68 lines (61 loc) · 1.63 KB
/
stack2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
* Implemntation of Stack Data Structure in JavaScript
* @author MadhavBahl
* @date 11/02/2019
* Method 2 - Stack implementation from scratch (without push() and pop() methods)
*/
class Stack {
// Constructor function to initialize the stack
constructor (capacity) {
this.myStack = [];
this.cap = capacity;
this.first = 0;
this.last = 0;
this.size = -1;
}
// isEmpty() method to check whether the stack is empty
isEmpty () {
if (this.size === -1) return true;
return false;
}
//isFull() method to check whether the stack is full
isFull () {
if (this.size === this.cap -1) return true;
return false;
}
// push() method to add an element to the stack
push (element) {
if (this.isFull()) {
console.log ('OVERFLOW!');
return 0;
}
console.log (`Pushing ${element} to the stack!`);
this.size++;
this.myStack[this.size] = element;
return 1;
}
// pop() method to remove topmost element
pop () {
if (this.isEmpty()) {
console.log ('UNDERFLOW!');
return 0;
}
console.log (`Popped element is: ${this.myStack[this.size]}`);
this.size--;
return 1;
}
// peek() method to view the toopmost element
peek () {
if (this.isEmpty()) {
console.log ('Stack is empty!');
return 0;
}
console.log (`Current Element is: ${this.myStack[this.size]}`);
}
}
const stk = new Stack (10);
stk.pop ();
stk.push (1);
stk.push (2);
stk.pop ();
stk.peek ();