-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Queues:ATaleofTwoStacks.java
50 lines (41 loc) · 1.49 KB
/
Queues:ATaleofTwoStacks.java
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
import java.io.*;
import java.util.*;
public class ATaleOfTwoStacks {
public static class MyQueue<T> {
Stack<T> stackNewestOnTop = new Stack<T>();
Stack<T> stackOldestOnTop = new Stack<T>();
public void enqueue(T value) { // Push onto newest stack
stackNewestOnTop.add(value);
}
public T peek() {
if(!stackOldestOnTop.isEmpty()) return stackOldestOnTop.peek();
while(!stackNewestOnTop.isEmpty()){
stackOldestOnTop.add(stackNewestOnTop.pop());
}
return stackOldestOnTop.peek();
}
public T dequeue() {
if(!stackOldestOnTop.isEmpty()) return stackOldestOnTop.pop();
while(!stackNewestOnTop.isEmpty()){
stackOldestOnTop.add(stackNewestOnTop.pop());
}
return stackOldestOnTop.pop();
}
}
public static void main(String[] args) {
MyQueue<Integer> queue = new MyQueue<Integer>();
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
for (int i = 0; i < n; i++) {
int operation = scan.nextInt();
if (operation == 1) { // enqueue
queue.enqueue(scan.nextInt());
} else if (operation == 2) { // dequeue
queue.dequeue();
} else if (operation == 3) { // print/peek
System.out.println(queue.peek());
}
}
scan.close();
}
}