Interface IInfixToRPN

All Known Implementing Classes:
InfixToRPNSolution

public interface IInfixToRPN

Required method for an infix->RPN expression translator.


Method Summary
 String translate(String anInfix)
          Returns the RPN representation of the given infix notation expression.
 

Method Detail

translate

public String translate(String anInfix)
Returns the RPN representation of the given infix notation expression.

Parameters:
anInfix - expression in infix to translate