Show / Hide Table of Contents

    Class BinaryTreeNode<T>

    Inheritance
    Object
    BinaryTreeNode<T>
    Implements
    IComparable
    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 BinaryTreeNode<T> : IComparable where T : IComparable
    Type Parameters
    Name Description
    T

    Constructors

    BinaryTreeNode(BinaryTreeNode<T>, T)

    Declaration
    public BinaryTreeNode(BinaryTreeNode<T> parent, T value)
    Parameters
    Type Name Description
    BinaryTreeNode<T> parent
    T value

    Properties

    IsLeaf

    Declaration
    public bool IsLeaf { get; }
    Property Value
    Type Description
    Boolean

    Left

    Declaration
    public BinaryTreeNode<T> Left { get; set; }
    Property Value
    Type Description
    BinaryTreeNode<T>

    Parent

    Declaration
    public BinaryTreeNode<T> Parent { get; set; }
    Property Value
    Type Description
    BinaryTreeNode<T>

    Right

    Declaration
    public BinaryTreeNode<T> Right { get; set; }
    Property Value
    Type Description
    BinaryTreeNode<T>

    Value

    Declaration
    public T Value { get; set; }
    Property Value
    Type Description
    T

    Methods

    CompareTo(BinaryTreeNode<T>)

    Declaration
    public int CompareTo(BinaryTreeNode<T> node)
    Parameters
    Type Name Description
    BinaryTreeNode<T> node
    Returns
    Type Description
    Int32

    CompareTo(Object)

    Declaration
    public int CompareTo(object obj)
    Parameters
    Type Name Description
    Object obj
    Returns
    Type Description
    Int32

    Implements

    System.IComparable
    Back to top Generated by DocFX