LinkedList/doubly_linked_list_node library
🔗🔗 Generic Doubly Linked List Node
A node in a doubly linked list containing a value and references to both the next and previous nodes. This enables bidirectional traversal.
Time Complexity: O(1) for all operations Space Complexity: O(1) per node