2022-04-01 21:02:39 +00:00
|
|
|
|
using C_.Datastructures.Generic;
|
|
|
|
|
|
|
|
|
|
namespace C_.Datastructures.LinkedList
|
2022-03-04 16:58:31 +00:00
|
|
|
|
{
|
2022-04-02 20:22:20 +00:00
|
|
|
|
internal class LinkedListNode<T> : UndirectedNode<T, LinkedListNode<T>>
|
2022-03-31 20:27:31 +00:00
|
|
|
|
{//Inherits from Node
|
2022-03-04 16:58:31 +00:00
|
|
|
|
public static LinkedListNode<T> Create(T? value, LinkedListNode<T>? next)
|
|
|
|
|
{
|
|
|
|
|
return new LinkedListNode<T>
|
|
|
|
|
{
|
|
|
|
|
Value = value,
|
|
|
|
|
Next = next
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|