Question: (java) Please fill in the following table and show a series of stack operations and their effects on an initially empty stack S of integers
(java) Please fill in the following table and show a series of stack operations and their effects on an initially empty stack S of integers with maxSize = 4. The top 2 rows have been filled for your reference.
| Method | Return Value | Stack Contents |
| push(5) | void | 5 |
| isEmpty() | False | 5 |
| push(3) | ||
| pop() | ||
| pop() | ||
| isEmpty() | ||
| push(7) | ||
| push(9) | ||
| peek() | ||
| push(4) | ||
| isFull() | ||
| pop() | ||
| push(6) | ||
| push(8) | ||
| isFull() | ||
| pop() | ||
| isEmpty() | ||
| isFull() |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
