The document discusses the algorithm for evaluating postfix expressions. It explains that postfix notation is faster than infix notation because it does not require parentheses. It then presents the steps of the algorithm to evaluate a postfix expression: 1) scan the expression from end to beginning 2) push operands onto a stack and pop operands to apply operators 3) push results back onto the stack 4) return the final value on the stack. An example is provided to demonstrate evaluating the postfix expression "2 3 1 * + 9 -".