Class DoublyLinkedListNode<T> | Advanced Algorithms
Search Results for

    Show / Hide Table of Contents

    Class DoublyLinkedListNode<T>

    Doubly linked list node.

    Inheritance
    Object
    DoublyLinkedListNode<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 DoublyLinkedListNode<T>
    Type Parameters
    Name Description
    T

    Constructors

    | Improve this Doc View Source

    DoublyLinkedListNode(T)

    Declaration
    public DoublyLinkedListNode(T data)
    Parameters
    Type Name Description
    T data

    Fields

    | Improve this Doc View Source

    Data

    Declaration
    public T Data
    Field Value
    Type Description
    T
    | Improve this Doc View Source

    Next

    Declaration
    public DoublyLinkedListNode<T> Next
    Field Value
    Type Description
    DoublyLinkedListNode<T>
    | Improve this Doc View Source

    Previous

    Declaration
    public DoublyLinkedListNode<T> Previous
    Field Value
    Type Description
    DoublyLinkedListNode<T>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX