Show / Hide Table of Contents

    Class ExpressionTree<T>

    A Expression tree implementation (POSIX tree)

    Inheritance
    Object
    ExpressionTree<T>
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Advanced.Algorithms.DataStructures
    Assembly: Advanced.Algorithms.dll
    Syntax
    public class ExpressionTree<T>
    Type Parameters
    Name Description
    T

    Methods

    Construct(T[], T[])

    construct tree for given expression with given operators

    Declaration
    public void Construct(T[] expression, T[] operators)
    Parameters
    Type Name Description
    T[] expression
    T[] operators

    GetInfix()

    get infix expression

    Declaration
    public List<T> GetInfix()
    Returns
    Type Description
    List<T>
    Back to top Generated by DocFX