Take out a piece of paper. We’ll be programming on paper.
Write Java code for the following problem.
Implement the ArrayStack class:
public interface Stack211<E> {
boolean empty();
E peek();
E pop();
E push(E item);
}
public class ArrayStack<E> implements Stack211<E> {
private E[] data;
private int top;
// your code here.
}
Answer the following questions:
What value should top be initialized to in the ArrayStack constructor? Why?
When do we need to resize the data array?