DataStructuresCSharp/C#/Datastructures/Nodes/LinkedListNode.cs

24 lines
593 B
C#
Raw Normal View History

2022-03-04 16:58:31 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace C_.Datastructures.Nodes
{
2022-03-05 19:16:25 +00:00
internal class LinkedListNode<T> : ILinkedListNode<T>
2022-03-04 16:58:31 +00:00
{
public T? Value { get; set; } = default;
2022-03-05 19:16:25 +00:00
public ILinkedListNode<T>? Next { get; set; } = default(LinkedListNode<T>);
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
};
}
}
}