Skip to content
Advertisement

Java Evaluating RPN using Shunting Yard Algorithm

I have the shunting yard algorithm that I found online:

JavaScript

}

And the evaluator:

JavaScript

And they work good so far but I have a problem with the evaluation where the delimiter is split by “”, which does not allow two digit numbers, such as 23, or above. What can you suggest that I can do to improve the evaluation method?

JavaScript

Such as I input: 256+3 result: 2 5 6 3 + Evaluation: 6 + 3 = 9, ignores 2 and 5

Advertisement

Answer

Your shuntingYard function is discarding the contents of output when an operator or a parenthesis is encountered.

You need to add checks for contents of output before processing the current character.

JavaScript

Also, splitting using the empty string is equivalent to just iterating the String one character at a time. Iterating infix using toCharArray() might be more readable

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement