Due date:2026.04.26 (Sun.) ==> 2026/05/01 (Fri.) 23:30 遲交三天以上不收件!
Basic
Implement the transformations:
from infix to postfix
from infix to prefix
from postfix to prefix
Advanced
Implement the transformations:
from prefix to postfix
from postfix to infix
from prefix to infix
Conversion process can be traced
...
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).