i need an algorithm to transfer any eqaution to post fix such as:
2+4*6
in post fix it becomes::
46*2+
which means puch 4
push 6
mul
push 2
add
i need an algorithm to transfer any equation to the post fix way
need help as soon as possibble
2+4*6
in post fix it becomes::
46*2+
which means puch 4
push 6
mul
push 2
add
i need an algorithm to transfer any equation to the post fix way
need help as soon as possibble