To convert an infix expression to postfix, we need an operator stack to hold operators temporarily and maintain the correct order of operations. The operands are simply output directly when encountered, while operators are pushed onto the stack and popped when necessary based on operator precedence.
Therefore, the correct answer is 1. An operator stack.