-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleetcode232.java
More file actions
47 lines (40 loc) · 938 Bytes
/
leetcode232.java
File metadata and controls
47 lines (40 loc) · 938 Bytes
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
class MyQueue {
private Stack<Integer> input;
private Stack<Integer> output;
public MyQueue() {
input=new Stack<>();
output=new Stack<>();
}
public void push(int x) {
while(!input.isEmpty()){
output.push(input.pop());
}
input.push(x);
while(!output.isEmpty()){
input.push(output.pop());
}
}
public int pop() {
if(input.isEmpty()){
return -1;
}
return input.pop();
}
public int peek() {
if(input.isEmpty()){
return -1;
}
return input.peek();
}
public boolean empty() {
return input.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();
*/