Stack Generic ArrayList
Ограничение по времени выполнения 1 секунда
Ограничение по использованию памяти 128 мегабайт
Реализуйте generic Stack.
Реализуйте интерфейс Stackable<T>.
Реализуйте класс MyStack<T> на базе структуры данных ArrayList который имплементирует интерфейс 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; ... }
Отправки 379
Коэффициент принятия 39 %