our normal expression style(infix) is very hard to calculate for computer. so these form of expressions are created.
simply postfix means first write numbers to calculate then write the arithmetic signs.
ex. (A+B) / (C-D) ----> AB+CD-/
web lecture
prefix means write the arithmetic signs then the numbers to calculate.
ex. (A+B) / (C-D) ----> /+AB-CD
a tip : you carry the signs out of the paranthesis they belong. if your expression doesn't contain paranthesis. you can put as long as you don't change the evaluation order.
so how can computers do these calculation. its fairly simple if you know stacks... just pushing and poping but when a sign is pushed or poped, you do the calculation...
you need to check the web, plenty of information can be found there...
good luck...