Vidyalelo
Data Structure · Q33

Linked Lists in Data Structures

Programming · Data Structure · question 33

Q33

How can you reverse a doubly linked list?

A.
Swap the pointers in each node
Answer
B.
Traverse the list and update next pointers only
C.
Use a stack to reverse
D.
Reverse the list in place

Answer: Option A

Solution

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