Question: Given the below code to implement a stack using an array public class ArrayStack { private int [] s; // Holds stack elements private int
Given the below code to implement a stack using an array public class ArrayStack { private int [] s; // Holds stack elements private int top; // Stack top pointer /** Constructor. @param capacity The capacity of the stack. */ public ArrayStack (int capacity) { s = new int[capacity]; top = 0; } Write methods for push, pop, and empty.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
