-
Notifications
You must be signed in to change notification settings - Fork 80
/
aTaleOfTwoStacks.java
53 lines (45 loc) · 1.51 KB
/
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
51
52
53
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Solution {
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.push(value);
}
public T peek() {
if (stackOldestOnTop.isEmpty()) {
while (!stackNewestOnTop.isEmpty())
stackOldestOnTop.push(stackNewestOnTop.pop());
}
return stackOldestOnTop.peek();
}
public T dequeue() {
if (stackOldestOnTop.isEmpty()) {
while (!stackNewestOnTop.isEmpty())
stackOldestOnTop.push(stackNewestOnTop.pop());
}
T value = stackOldestOnTop.pop();
return value;
}
}
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();
}
}