Programming Homework Help

Programming Homework Help. Trident University Data Abstracts Stacks and Queues Java Programming Task

 

Assignment

Write a Java program to accomplish the following tasks. After you are done, send the original Java code, along with screenshots of the result.

  1. Create an empty stack.
  2. Add 5 numbers to the stack.
  3. Reverse the order of these numbers in the stack.

Hint: After pushing 5 numbers to the stack, pop them to an empty queue, then transfer the data to the stack (this is only one of the solutions).

Alternative Assignment

Write a Java program to accomplish the following tasks. After you are done, send the original Java code along with screenshots of the result.

  1. Create an empty queue.
  2. Add 5 numbers to the queue.
  3. Reverse the order of these numbers in the queue.

Hint: After adding 5 numbers to the queue, pop them to an empty stack, then transfer the data to the queue (this is only one of the solutions).

Programming Homework Help