A E M P

A

ArrayStack - class dataStructures.ArrayStack.
 
ArrayStack() - Constructor for class dataStructures.ArrayStack
create a stack with initial capacity 10
ArrayStack(int) - Constructor for class dataStructures.ArrayStack
create a stack with the given initial capacity

E

empty() - Method in class dataStructures.ArrayStack
 

M

main(String[]) - Static method in class dataStructures.ArrayStack
test program

P

peek() - Method in class dataStructures.ArrayStack
 
pop() - Method in class dataStructures.ArrayStack
remove top element of stack and return it
push(Object) - Method in class dataStructures.ArrayStack
add theElement to the top of the stack

A E M P