Search Results for

    Show / Hide Table of Contents

    Class CircularLinkedListNode<T>

    Circular linked list node.

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

    Constructors

    | Improve this Doc View Source

    CircularLinkedListNode(T)

    Declaration
    public CircularLinkedListNode(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 CircularLinkedListNode<T> Next
    Field Value
    Type Description
    CircularLinkedListNode<T>
    | Improve this Doc View Source

    Previous

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