-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolution232.java
More file actions
executable file
·46 lines (39 loc) · 1.02 KB
/
Copy pathSolution232.java
File metadata and controls
executable file
·46 lines (39 loc) · 1.02 KB
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
import java.util.*;
class MyQueue {
private Deque<Integer> inqueue;
private Deque<Integer> outqueue;
public MyQueue() {
inqueue = new ArrayDeque<>();
outqueue = new ArrayDeque<>();
}
public void push(int x) {
inqueue.addLast(x);
}
public int pop() {
if (outqueue.isEmpty()) {
while (!inqueue.isEmpty()) {
outqueue.addLast(inqueue.removeLast());
}
}
return outqueue.removeLast();
}
public int peek() {
if (outqueue.isEmpty()) {
while (!inqueue.isEmpty()) {
outqueue.addLast(inqueue.removeLast());
}
}
return outqueue.peekLast();
}
public boolean empty() {
return inqueue.isEmpty() && outqueue.isEmpty();
}
}
/**
* Your MyQueue object will be instantiated and called as such:
* MyQueue obj = new MyQueue();
* obj.push(x);
* int param_2 = obj.pop();
* int param_3 = obj.peek();
* boolean param_4 = obj.empty();
*/