In a doubly linked list, each node contains :
2025
In a doubly linked list, each node contains :
- A.
Data and a pointer to the next node only
- B.
Data and a pointer to the previous node only
- C.
Data, a pointer to the next node, and a pointer to the previous node
- D.
Only data
Attempted by 173 students.
Show answer & explanation
Correct answer: C
In a doubly linked list, each node contains data and two pointers: one pointing to the previous node and another pointing to the next node.