How would the standard Shunting Yard Algorithm be modified to include a 'wall' symbol, |, representing the end of the function parameters? That is, to support a modification of postfix notation (Reverse Polish Notation) which allows functions with arbitrary numbers of parameters.
A couple of examples of the modified postfix notation:
f(1,2)+9 ⟶ | 1 2 f 9 +
f(1,2,3)+9 ⟶ | 1 2 3 f 9 +
Please, I'm looking for the actual modifications, not just ideas on how to do it.
Shunting Yard Algorithm
- While there are tokens to be read:
- Read a token.
- If the token is a number, then push it to the output queue.
- If the token is a function token, then push it onto the stack.
- If the token is a function argument separator (e.g., a comma):
- Until the token at the top of the stack is a left parenthesis, pop operators off the stack onto the output queue. If no left parentheses are encountered, either the separator was misplaced or parentheses were mismatched.
If the token is an operator, o1, then:
while there is an operator token o2, at the top of the operator stack and either
- o1 is left-associative and its precedence is less than or equal to that of o2, or
o1 is right associative, and has precedence less than that of o2,
-pop o2 off the operator stack, onto the output queue;
- at the end of iteration push o1 onto the operator stack.
- If the token is a left parenthesis (i.e. "("), then push it onto the stack.
- If the token is a right parenthesis (i.e. ")"):
- Until the token at the top of the stack is a left parenthesis, pop operators off the stack onto the output queue.
- Pop the left parenthesis from the stack, but not onto the output queue.
- If the token at the top of the stack is a function token, pop it onto the output queue.
- If the stack runs out without finding a left parenthesis, then there are mismatched parentheses.
- When there are no more tokens to read:
- While there are still operator tokens in the stack:
- If the operator token on the top of the stack is a parenthesis, then there are mismatched parentheses.
- Pop the operator onto the output queue.
- While there are still operator tokens in the stack:
- Exit.
f
is a function? Eg., Suppose the input is| | a b c d
Is itd(c(a,b))
ord(b(a), c)
? – ricif
is a function, I think that will work. – rici