Question: Java Write a method from the client perspective to display the contents of a stack in the order in which they were added- one element
Java
Write a method from the client perspective to display the contents of a stack in the order in which they were added- one element per line.
For example, if you push a, b, and c onto a stack, and invoke the method, the method would print:
a
b
c
The method header is:
public void printInAddOrder(StackInterface
Notes:
The stack sent in as a parameter must not be destroyed. (Or, if you destroy it, you must recreate it.)
The methods of StackInterface are defined in the textbook in Section 5.3 and the StackInterface.java file is included with the files for this homework.
For full credit, your method should not be recursive.
If necessary, you can create a new object of type LinkedStack (StackInterface tmpStack = new LinkedStack()). For full credit, do not use other kinds of data structures (arrays, lists, etc.) in your solution.
HW File: http://www.mediafire.com/file/590n4tdjaw7nn1d/HomeworkW12JavaFiles.zip
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
