演算法 思路如下: ... function infixToPostfix(infix, postfix) { let postfixHelper = Stack(); ... isOper(infix[i])) { operands += infix[i++] } ...
確定! 回上一頁