Question: data structure Write a Java program that implements a queue and stack. The program will ask users to: Input a number as the size. Input
data structure
Write a Java program that implements a queue and stack. The program will ask users to:
- Input a number as the size.
- Input positive and negative numbers.
- If the number is positive, it will push it in to the queue.
- If the number is negative it will push it in to the stack.
Then the program will display back the elements of the queue which is the positive numbers with their summation at the end. And it will display back the elements of the stack which is the negative numbers with their summation at the end of the program.
without using stack and queue library
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
