import java.util.List; public interface InfixToPostfix { public List infixToPostfix(List infix); }