Edd Mann Developer

Shunting Yard Implementation in Java

The Shunting Yard algorithm was developed by the great Edsger Dijkstra as a means to parse an infix mathematical expression into Reverse Polish notation (postfix). Using said notation allows the computer to evaluate the expression in a simple stack based form, examples of which I have shown in Scala. The algorithm itself also uses a stack along with a built-up output string to create the resulting value. Below is an example implementation which only takes into consideration bracket and the four common operator precedences. Although it is possible to evaluate more, including functions and associativity, I decided on keeping the implementation simple to better highlight the process.


import java.util.*;

public class ShuntingYard {

    private enum Operator
    {
        ADD(1), SUBTRACT(2), MULTIPLY(3), DIVIDE(4);
        final int precedence;
        Operator(int p) { precedence = p; }
    }

    private static Map<String, Operator> ops = new HashMap<String, Operator>() {{
        put("+", Operator.ADD);
        put("-", Operator.SUBTRACT);
        put("*", Operator.MULTIPLY);
        put("/", Operator.DIVIDE);
    }};

    private static boolean isHigerPrec(String op, String sub)
    {
        return (ops.containsKey(sub) && ops.get(sub).precedence >= ops.get(op).precedence);
    }

    public static String postfix(String infix)
    {
        StringBuilder output = new StringBuilder();
        Deque<String> stack  = new LinkedList<>();

        for (String token : infix.split("\\s")) {
            // operator
            if (ops.containsKey(token)) {
                while ( ! stack.isEmpty() && isHigerPrec(token, stack.peek()))
                    output.append(stack.pop()).append(' ');
                stack.push(token);

            // left parenthesis
            } else if (token.equals("(")) {
                stack.push(token);

            // right parenthesis
            } else if (token.equals(")")) {
                while ( ! stack.peek().equals("("))
                    output.append(stack.pop()).append(' ');
                stack.pop();

            // digit
            } else {
                output.append(token).append(' ');
            }
        }

        while ( ! stack.isEmpty())
            output.append(stack.pop()).append(' ');

        return output.toString();
    }

}

The example implementation above first creates an enumerated type called ‘Operator’ which stores the incrementing precedence of the four operators. Following this a map is initalised using double bracket syntax, pairing the enumerated type with its symbol equivalent. Supplying the postfix method with an infix string splits (on white-space) and evaluates each token. The next step depends on the subject matter, if the token is a digit it will be added to the output string immediately. If on the other hand it is a left parenthesis, it is added to the stack and kept there until a pairing right parenthesis appears. When this is the case, the stack contents is added to the output string until it arrives back at the left parenthesis. If the token is an operator each stack operator item is appended to the output string until the token operator has a greater precedence, once complete the subject token is pushed to the stack. Finally, the remaining items in the stack are appended to the output builder and a string instance of the StringBuilder is returned.

postfix("( 5 + 7 ) * 2") // 5 7 + 2 *
postfix("5 + 7 / 2")     // 5 7 2 / +

Resources