Due date: 2025/4/16 (Wed.) 23:30 2023/04/18 (Tue.)
Basic
Implement the transformations:
from infix to postfix
from infix to prefix
from posfix to prefix
Advanced
Implement the transformations:
from prefix to postfix
from postfix to infix
from prefix to infix
...
In Builder, a certain variable, namely "infix", of type "String" can be regarded as charcter arrays, infix[1], infix[2], ... , infix[n] where n = |infix| (the length of "infix").
Note that the index starts from 1 (instead of 0).