Show / Hide Table of Contents

    Class DoublyLinkedListNode<T>

    Doubly linked list node.

    Inheritance
    Object
    DoublyLinkedListNode<T>
    Namespace: Advanced.Algorithms.DataStructures
    Assembly: Advanced.Algorithms.dll
    Syntax
    public class DoublyLinkedListNode<T> : object
    Type Parameters
    Name Description
    T

    Constructors

    DoublyLinkedListNode(T)

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

    Fields

    Data

    Declaration
    public T Data
    Field Value
    Type Description
    T

    Next

    Declaration
    public DoublyLinkedListNode<T> Next
    Field Value
    Type Description
    DoublyLinkedListNode<T>

    Previous

    Declaration
    public DoublyLinkedListNode<T> Previous
    Field Value
    Type Description
    DoublyLinkedListNode<T>
    Back to top Generated by DocFX