-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueuesWithStacks.java
63 lines (49 loc) · 1.65 KB
/
QueuesWithStacks.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
54
55
56
57
58
59
60
61
62
63
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
// https://www.hackerrank.com/challenges/ctci-queue-using-two-stacks/problem
public class QueuesWithStacks {
/*
if stack2 is empty we must refil from stack, stack 2 can be used as FIFO
stack contains enqueued items in LIFO order
Dumping a LIFO structure in another LIFO one creates a FIFO one.
*/
static class MyQueue<T> {
Stack<T> stack = new Stack<>();
Stack<T> stack2 = new Stack<>();
public void enqueue(T v) {
stack.push(v);
}
public void dequeue() {
if (stack2.isEmpty()) transfer();
stack2.pop();
}
public T peek() {
if (stack2.isEmpty()) transfer();
return stack2.peek();
}
private void transfer() {
while(!stack.isEmpty()) {
stack2.push(stack.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();
}
}