/// <summary> /// Generates polish postfix expression. /// </summary> protected virtual void GeneratePolishPostfixExpression() { PolishVisitor polishVisitor = new PolishVisitor(this._sizeOfPolishPostfixExpression); this._binaryTree.Visit(polishVisitor); this._polishPostfixExpression = polishVisitor.GetPolishPostfixExpression(); }