I\'m trying to create custom list. This is the node structure:
struct Node { ListNode* prev; ListNode* next; void* data; };
One o