[Solved] Shunting-yard algorithm with function support [closed]
There are several problems with your translation of the code from that answer, including one fairly obvious error in the answer itself, which is that the second if (if token is ‘[‘) should be else if. But note that the condition in the first if is if token is operand, but your translation is, roughly, … Read more