2

What are advantages of post-fix expressions over prefix expressions? What can be the disadvantages of prefix expressions that can be removed using postfix expressions?

ashiquzzaman33
  • 5,781
  • 5
  • 31
  • 42

1 Answers1

0

You can see here

Postfix and Prefix notations have similar complexity, Postfix is slightly easier to evaluate in simple circumstances as the operators really are evaluated strictly left-to-right.

Fore more about Infix, Prefix and Postfix Expressions you can read this.

ashiquzzaman33
  • 5,781
  • 5
  • 31
  • 42