Question: Do this in Java Implement a stack using an array as discussed in class. Make your stack size 5. Stack() creates an empty stacks, stacks
Do this in Java
Implement a stack using an array as discussed in class. Make your stack size 5. Stack() creates an empty stacks, stacks is new and empty. push(item) adds a new item to the stacks, stacks is modified. pop() removes and returns an item, stacks is modified. isEmpty() returns a boolean and tests for an empty stacks, stacks is not modified. size() returns the int size of the stacks, stacks is not modified print() prints the stacks from front to rear, stacks is not modified. top() prints the front element, stacks is not modified. Driver should print the results of the following push("dog") push("cat") push("mouse") push("pig") push("bird") size() push("puppy") size() PoP() PoP() size() PoP() top() PoP() PoP() size() isEmpty()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
