What is a memory efficient double linked list?

Q & ACategory: Data StructureWhat is a memory efficient double linked list?
Admin Staff asked 4 years ago

What is a memory efficient double linked list?
a) Each node has only one pointer to traverse the list back and forth
b) The list has breakpoints for faster traversal
c) An auxiliary singly linked list acts as a helper list to traverse through the doubly linked list
d) A doubly linked list that uses bitwise AND operator for storing addresses

1 Answers
Admin Staff answered 4 years ago

a) Each node has only one pointer to traverse the list back and forth