Jump to content

Parsing/Shunting-yard algorithm: Difference between revisions

m
→‎{{header|Java}}: added comment
(Added C# 7 implementation)
m (→‎{{header|Java}}: added comment)
Line 2,027:
 
static String infixToPostfix(String infix) {
/* To find out the precedence, we take the index of the
token in the ops string and divide by 2 (rounding down).
This will give us: 0, 0, 1, 1, 2 */
final String ops = "-+/*^";
 
StringBuilder sb = new StringBuilder();
Stack<Integer> s = new Stack<>();
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.