mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-10 04:26:27 +08:00
added main and test cases for QueueUsingTwoStacks.java
This commit is contained in:
@ -15,7 +15,7 @@ import java.util.Stack;
|
|||||||
* @author sahilb2
|
* @author sahilb2
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
class QueueUsingTwoStacks {
|
class QueueWithStack {
|
||||||
|
|
||||||
// Stack to keep track of elements inserted into the queue
|
// Stack to keep track of elements inserted into the queue
|
||||||
private Stack inStack;
|
private Stack inStack;
|
||||||
@ -25,7 +25,7 @@ class QueueUsingTwoStacks {
|
|||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
*/
|
*/
|
||||||
public QueueUsingTwoStacks() {
|
public QueueWithStack() {
|
||||||
this.inStack = new Stack();
|
this.inStack = new Stack();
|
||||||
this.outStack = new Stack();
|
this.outStack = new Stack();
|
||||||
}
|
}
|
||||||
@ -65,3 +65,59 @@ class QueueUsingTwoStacks {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class is the example for the Queue class
|
||||||
|
*
|
||||||
|
* @author sahilb2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class QueueUsingTwoStacks {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Main method
|
||||||
|
*
|
||||||
|
* @param args Command line arguments
|
||||||
|
*/
|
||||||
|
public static void main(String args[]){
|
||||||
|
QueueWithStack myQueue = new QueueWithStack();
|
||||||
|
myQueue.insert(1);
|
||||||
|
// instack: [(top) 1]
|
||||||
|
// outStack: []
|
||||||
|
myQueue.insert(2);
|
||||||
|
// instack: [(top) 2, 1]
|
||||||
|
// outStack: []
|
||||||
|
myQueue.insert(3);
|
||||||
|
// instack: [(top) 3, 2, 1]
|
||||||
|
// outStack: []
|
||||||
|
myQueue.insert(4);
|
||||||
|
// instack: [(top) 4, 3, 2, 1]
|
||||||
|
// outStack: []
|
||||||
|
|
||||||
|
System.out.println(myQueue.isEmpty()); //Will print false
|
||||||
|
|
||||||
|
System.out.println(myQueue.remove()); //Will print 1
|
||||||
|
// instack: []
|
||||||
|
// outStack: [(top) 2, 3, 4]
|
||||||
|
|
||||||
|
myQueue.insert(5);
|
||||||
|
// instack: [(top) 5]
|
||||||
|
// outStack: [(top) 2, 3, 4]
|
||||||
|
|
||||||
|
myQueue.remove();
|
||||||
|
// instack: [(top) 5]
|
||||||
|
// outStack: [(top) 3, 4]
|
||||||
|
myQueue.remove();
|
||||||
|
// instack: [(top) 5]
|
||||||
|
// outStack: [(top) 4]
|
||||||
|
myQueue.remove();
|
||||||
|
// instack: [(top) 5]
|
||||||
|
// outStack: []
|
||||||
|
myQueue.remove();
|
||||||
|
// instack: []
|
||||||
|
// outStack: []
|
||||||
|
|
||||||
|
System.out.println(myQueue.isEmpty()); //Will print true
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user