Skip to content

Commit a46bc63

Browse files
Create 0225-implement-stack-using-queues.js
1 parent 2d0e0cc commit a46bc63

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
var MyStack = function() {
2+
this.q = [];
3+
};
4+
5+
MyStack.prototype.push = function(x) {
6+
this.q.push(x);
7+
};
8+
9+
MyStack.prototype.pop = function() {
10+
let size = this.q.length;
11+
for(let i = 0; i < size - 1; i++)
12+
this.push(this.q.shift());
13+
return this.q.shift();
14+
};
15+
16+
MyStack.prototype.top = function() {
17+
let size = this.q.length;
18+
for(let i = 0; i < size - 1; i++)
19+
this.push(this.q.shift());
20+
let res = this.q.shift();
21+
this.push(res);
22+
return res;
23+
};
24+
25+
MyStack.prototype.empty = function() {
26+
return this.q.length == 0
27+
};

0 commit comments

Comments
 (0)