Class SinglyLinkedListNode<T> | Advanced Algorithms
Search Results for

    Show / Hide Table of Contents

    Class SinglyLinkedListNode<T>

    Singly linked list node.

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

    Constructors

    | Improve this Doc View Source

    SinglyLinkedListNode(T)

    Declaration
    public SinglyLinkedListNode(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 SinglyLinkedListNode<T> Next
    Field Value
    Type Description
    SinglyLinkedListNode<T>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX