not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

18 lines
292 B

package net.jrtechs.www.DataStructures.Lists.Stack;
/**
* Interface for defining behavior of a Stack
*
* @author Jeffery Russell 8-25-18
* @param <E>
*/
public interface IStack<E>
{
public boolean empty();
public E peek();
public E pop();
public void push(E item);
}