What is a memory efficient double linked list?
Each node has only one pointer to traverse the list back and forth
The list has breakpoints for faster traversal
An auxiliary singly linked list acts as a helper list to traverse through the doubly linked list
None