This document is a data structures assignment that contains two tasks:
1) Converting an infix expression to postfix notation using a stack. The example infix expression is converted to postfix as -+-AB*C+DE+FG.
2) Evaluating the postfix expression from the first task by assigning values to variables and using a stack to calculate the result, which is 33.