Skip to content

Commit c13d87b

Browse files
committed
Queue using to stacks
1 parent 3512460 commit c13d87b

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
package com.dev.arrayandhashing;
2+
3+
import java.util.Stack;
4+
5+
public class QueueWithTwoStacks {
6+
Stack<Integer> stack1 = new Stack<>();
7+
Stack<Integer> stack2 = new Stack<>();
8+
9+
public void enqueue(int i){
10+
this.stack1.push(i);
11+
}
12+
13+
public Integer dequeue(){
14+
if (stack1.isEmpty() && stack2.isEmpty()){
15+
throw new RuntimeException("No Elements in Queue");
16+
}
17+
if (stack2.isEmpty()){
18+
while (!stack1.isEmpty()){
19+
stack2.push(stack1.pop());
20+
}
21+
}
22+
23+
return stack2.pop();
24+
}
25+
26+
public static void main(String[] args) {
27+
28+
QueueWithTwoStacks queue = new QueueWithTwoStacks();
29+
queue.enqueue(1);
30+
queue.enqueue(2);
31+
queue.enqueue(3);
32+
System.out.println(queue.dequeue()); // Output: 1
33+
System.out.println(queue.dequeue()); // Output: 2
34+
queue.enqueue(4);
35+
System.out.println(queue.dequeue()); // Output: 3
36+
System.out.println(queue.dequeue()); // Output: 4
37+
38+
}
39+
}

0 commit comments

Comments
 (0)