File tree 1 file changed +39
-0
lines changed
src/main/java/com/dev/arrayandhashing
1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments