DataStructuresCSharp/Datastructures/DoublyLinkedList/DoublyLinkedListNode.cs

20 lines
588 B
C#
Raw Normal View History

2022-04-01 21:02:39 +00:00
using C_.Datastructures.Generic;
namespace C_.Datastructures.DoublyLinkedList
2022-03-06 09:10:17 +00:00
{
internal class DoublyLinkedListNode<T> : UndirectedNode<T, DoublyLinkedListNode<T>>
{//Inherits from Node
2022-04-13 20:12:18 +00:00
internal DoublyLinkedListNode<T>? Prev { get; set; } = default;
2022-03-06 09:10:17 +00:00
public static DoublyLinkedListNode<T> Create(T? value, DoublyLinkedListNode<T>? next, DoublyLinkedListNode<T>? prev)
2022-03-06 09:10:17 +00:00
{
return new DoublyLinkedListNode<T>
{
Value = value,
Next = next,
Prev = prev
};
}
}
}