Exemplo n.º 1
0
        /// <summary>
        /// Generates polish postfix expression.
        /// </summary>
        protected virtual void GeneratePolishPostfixExpression()
        {
            PolishVisitor polishVisitor = new PolishVisitor(this._sizeOfPolishPostfixExpression);

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