convert infix to postfix a b c d e f g h i j k 10
convert infix to postfix a * b / c * d - e * f + g * h * i * j + k (10 pts) and convert postfix to infix a b c d / + * e f * g h - * / ( 10 pts)
Solution
postfix of a * b / c * d - e * f + g * h * i * j + k is a b * c / d * e f * - g h * i * j * + k +
infix of a b c d / + * e f * g h - * / is a * (b + c / d) / (e * f * (g - h))
