From charlesreid1

Revision as of 05:42, 4 June 2017 by Admin (talk | contribs) (Created page with "<pre> public interface Stack<E> { int size(); boolean isEmpty(); void push(E e); E pop(); E peek(); } </pre> =Flags= {{DataStructuresFlag}} Category...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
public interface Stack<E> { 
    int size();
    boolean isEmpty();
    void push(E e);
    E pop();
    E peek();
}


Flags