[Solved] program using Scheme that evaluates a postfix expression [closed]
Here’s pseudo-code: Initialize stack to empty list For each element e in the expression: if e is a number, push it onto the stack otherwise, call the function corresponding to the operator (you can use an association list or cond to find this), passing the stack as the parameter – The function pops the needed … Read more