Vidyalelo
Data Structure · Q165

Introduction to Data Structures

Programming · Data Structure · question 165

Q165

How do you calculate the pointer difference in a memory efficient double linked list?

A.
head xor tail
B.
pointer to previous node xor pointer to next node
Answer
C.
pointer to previous node - pointer to next node
D.
pointer to next node - pointer to previous node

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board