vote up 0 vote down star

How would the infix and stack priorities be extended to include the operators <, >, <=, >=, ==, !=, !, &&, and ||?

When parsing an infix expression, for example: P + (Q – F) / Y#, each symbol has a priority which is relevant to their order of operation. / and * have a higher priority than + and -.

Here are the priorities I have/understand:

Priority * / + - ( )   #

Infix    2 2 1 1 3 0   0 

Stack    2 2 1 1 0 n/a 0
flag

67% accept rate
This sounds like a homework question quoted verbatim... – Erik Nov 13 '08 at 23:41

3 Answers

vote up 0 vote down

That depends on what priorities you want, right? Unless you are asking about the priorities in a specific language (if so, elaborate).

Anyway, <, >, <= and >= do not apply to booleans, == and != apply to anything, and !, && and || apply solely to booleans. But they ALL return booleans, so you want to apply those which do not apply to booleans first, those which might apply to booleans next, and finally those which only apply to booleans. As for the last, ! has precedence over && and ||. Though not necessary, I'd make && have precedence over ||, because some logic notations work that way.

So the precedence would wind up being:

(
* /
+ -
< > <= >=
== !=
!
&&
||
) #
link|flag
vote up -1 vote down

Found: Operator Precedence in Java & Infix operators

But why?

link|flag
I still don't understand your question. And yes, I know what operator priorities are, and I know about stacks, and I know about infix (and postfix, and prefix), and I know how to translate between them. And I teach the compiler course. But I don't understand what your question is. – Thomas Padron-McCarthy Nov 14 '08 at 11:36
vote up 0 vote down

Can you please elaborate? I don't understand what you're asking (and I think I should).

link|flag
When parsing an infix expression, for example: P + (Q – F) / Y#, each symbol has a priority which is relevant to their order of operation. / and * have a higher priority than + and - – twodayslate Nov 13 '08 at 23:41
Please elaborate by editing your question. – Svante Nov 14 '08 at 0:51
edited, thanks for the help. LMK if you understand now... – twodayslate Nov 14 '08 at 1:22

Your Answer

Get an OpenID
or

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