Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
132 Bytes
package torea;
interface IStack<E>{
void push(E e);
E pop();
E peek();
boolean isEmpty();
int size();
}