vote up 1 vote down star

I'm struggling getting the pseudo code for this.

Scan string left to right for each char If operand add it to string Else if operator add to stack ....

i'm struggling on how to handle ( )s

flag

3 Answers

vote up 0 vote down check

Have you tried these links yet?

http://www.geocities.com/e_i_search/premshree/web-include/pub/infix-postfix/index.htm

http://www.cis.temple.edu/~koffman/cis223/InfixToPostfix.doc

link|flag
Thanks, i'll use those. – Jeremiah Oct 18 at 0:04
vote up 0 vote down

I am a bit rusty at this, but when you encounter a '(' , you push it onto the stack because it has the highest precedence. I cant remember what to do when you encounter ')', but i think it goes on the stack as well because its the highest precedence.

link|flag
vote up 0 vote down

( goes on to the stack, then when you get to ) you pop from the stack until you find a (.

Wikipedia has a more detailed description of the algorithm, supporting functions as well as operators.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.