Datasets:

ArXiv:
License:
File size: 132 Bytes
c574d3a
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
package torea;

interface IStack<E>{
    void push(E e);
    E pop();
    E peek();
    boolean isEmpty();
    int size();
}