Class DoublyLinkedListNode<T>
Inheritance
DoublyLinkedListNode<T>
Assembly: Advanced.Algorithms.dll
Syntax
public class DoublyLinkedListNode<T>
Type Parameters
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
Field Value
|
Improve this Doc
View Source
Next
Declaration
public DoublyLinkedListNode<T> Next
Field Value
|
Improve this Doc
View Source
Previous
Declaration
public DoublyLinkedListNode<T> Previous
Field Value