Google News
logo
Data Structures - Quiz(MCQ)
Which of the following statement is not true about the doubly linked list?
A)
It requires extra space
B)
We can traverse in both the directions.
C)
It stores the addresses of the next and the previous node
D)
Implementation of doubly linked list is easier than the singly linked list

Correct Answer :   Implementation of doubly linked list is easier than the singly linked list


Explanation : The implementation of doubly linked list is complex as compared to singly linked list as it needs to store the addresses of the two nodes, i.e., the previous and the next node. If we insert or delete the node from the doubly linked list then it needs to adjust two pointers, previous and the next pointer.

Advertisement