-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
Copy path0232-implement-queue-using-stacks.js
57 lines (49 loc) · 1.11 KB
/
0232-implement-queue-using-stacks.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
// https://leetcode.com/problems/implement-queue-using-stacks/
var MyQueue = function() {
this.stack1 = [];
this.stack2 = [];
};
/**
* @param {number} x
* @return {void}
*/
MyQueue.prototype.push = function(x) {
this.stack1.push(x);
};
/**
* @return {number}
*/
MyQueue.prototype.pop = function() {
this.swappingStacks();
if(!this.stack2.length){
return null;
}
return this.stack2.pop();
};
/**
* @return {number}
*/
MyQueue.prototype.peek = function() {
this.swappingStacks();
return this.stack2.length == 0 ? null : this.stack2[this.stack2.length-1]
};
/**
* @return {boolean}
*/
MyQueue.prototype.empty = function() {
return this.stack1.length === 0 && this.stack2.length === 0;
};
MyQueue.prototype.swappingStacks = function() {
if (this.stack1.length) {
this.stack2 = [...this.stack1.reverse(), ...this.stack2];
this.stack1 = [];
}
}
/**
* Your MyQueue object will be instantiated and called as such:
* var obj = new MyQueue()
* obj.push(x)
* var param_2 = obj.pop()
* var param_3 = obj.peek()
* var param_4 = obj.empty()
*/