LinkedList/linked_list_node library

🔗 Generic Linked List Node

A node in a singly linked list containing a value and a reference to the next node. This is the fundamental building block for all linked list operations.

Time Complexity: O(1) for all operations Space Complexity: O(1) per node

Classes

LinkedListNode<T>