-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathqueue-with-two-stacks.js
69 lines (59 loc) · 1.12 KB
/
queue-with-two-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
58
59
60
61
62
63
64
65
66
67
68
69
function Stack() {
this.dataStore = [];
this.top = 0;
this.push = push;
this.pop = pop;
this.peek = peek;
this.length = length;
this.clear = clear;
};
function push(val) {
this.dataStore[this.top++] = val;
};
function pop() {
return this.dataStore[--this.top];
};
function peek() {
return this.dataStore[this.top-1];
};
function length() {
return this.top;
};
function clear() {
this.top = 0;
};
function Queue() {
this.inStack = new Stack();
this.outStack = new Stack();
this.enqueue = enqueue;
this.dequeue = dequeue;
this.peek = peek;
this.empty = empty;
this.length = 0;
}
function empty() {
this.inStack.clear();
this.outStack.clear();
};
function peek() {
if (this.outStack.length() > 1) {
return this.outStack.dataStore[length-1];
} else {
return this.inStack.dataStore[0];
}
};
function enqueue(val) {
this.inStack.push(val);
this.length ++;
}
function dequeue() {
var val;
if (this.outStack.length() === 0) {
while (this.inStack.length() > 0) {
val = this.inStack.pop();
this.outStack.push(val);
}
}
val = this.outStack.pop();
return val;
}