eolymp
bolt
Try our new interface for solving problems
Problems

Stack Generic ArrayList

Stack Generic ArrayList

Implement a generic Stack.

Implement interface Stackable<T>.

Implement class MyStack<T> based on ArrayList data structure that implements interface Stackable<T>.

interface Stackable<T> 
{
  void push(T value); // push element to the top of the stack
  T pop();            // remove and return element from the top of the stack 
  T peek();           // return element from the top of the stack 
  boolean Empty();    // check if stack is empty
  int size();         // return size of the stack
}

class MyStack<T> implements Stackable<T> 
{
  public ArrayList<T> s;
   ...
}
Time limit 1 second
Memory limit 128 MiB
Author Michael Medvediev