Implement a MyQueue class which implements a queue using two stacks. private int maxCapacity = 4; private Stack stack1;  private Stack stack2; Note: You can use library Stack but you are not allowed to use library Queue and any of its methods Your Queue should not accept null or empty String or space as an input You need to implement the following methods using two stacks (stack1 & stack2) and also you can add more methods as well: public int size() public void insert(String value) public String remove() private void shiftStacks() public boolean isEmpty() public boolean isFull() Test case1: Testing empty queue - Input1: 1 - Output1: [0:Empty:] Test case2: Testing insert method - Input2: 2 4 a b c d - Output2: [4:Full:a, b, c, d] Test case3: Testing remove method - Input3: 3 4 a b c d - Output3: [3:b, c, d]

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

***---------------------------------------------------------------***

Answer question below:

- Write Java code.

Implement a MyQueue class which implements a queue using two stacks.

private int maxCapacity = 4;

private Stack<String> stack1; 

private Stack<String> stack2;

Note:

  • You can use library Stack but you are not allowed to use library Queue and any of its methods
  • Your Queue should not accept null or empty String or space as an input

You need to implement the following methods using two stacks (stack1 & stack2) and also you can add more methods as well:

public int size()

public void insert(String value)

public String remove()

private void shiftStacks()

public boolean isEmpty()

public boolean isFull()

Test case1: Testing empty queue

- Input1:

1

- Output1:

[0:Empty:]

Test case2: Testing insert method

- Input2:

2

4

a

b

c

d

- Output2:

[4:Full:a, b, c, d]

Test case3: Testing remove method

- Input3:

3

4

a

b

c

d

- Output3:

[3:b, c, d]

*MyQueue.java:

import java.util.*;

import java.lang.*;

import java.io.*;

 

public class MyQueue {

private int maxCapacity = 4;

private Stack<String> stack1;

private Stack<String> stack2;

 

public MyQueue() { }

public int size() { }

public void insert (String value) { }

public String remove() { }

private void shiftStacks() { }

public boolean isEmpty() { }

public boolean isFull() { }

 

@Override

public String toString () {

shiftStacks();

StringBuilder sb = new StringBuilder("[");

sb.append(this.size()).append(":");

if(this.isEmpty())

sb.append("Empty").append(":");

else if (this.isFull())

sb.append("Full").append(":");

while(!isEmpty()){

sb.append(this.remove());

if(this.size()!=0) sb.append(", ");

}

sb.append("]");

return sb.toString();

}

}

*MyQueueDriver.java:

import java.util.*;

import java.lang.*;

import java.io.*;

 

public class MyQueueDriver {

public static void main(String[] args) {

MyQueue q = new MyQueue();

Scanner input = new Scanner(System.in);

int which = input.nextInt();

int quantity = 0;

if(which != 1) quantity = input.nextInt();

String[] elements = new String[quanity];

for(int i = 0; i < quantity; i++)

     elements[i] = input.next();

switch (which) {

case 1 :

      System.out.println(q.toString());

      break;

case 2 :

       for(String s : elements)

            q.insert(s);

System.out.println(q.toString());

break;

case 3 :

        for(String s : elements)

             q.insert(s);

q.remove();

System.out.println(q.toString());

break;

}

}

}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Stack
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education