Google News
logo
CPP - Quiz(MCQ)
How the list containers are implemented?
A)
Using Single & Double linked list
B)
Using Single linked list
C)
Using linear linked list
D)
Using Double linked list

Correct Answer :   Using Double linked list


Explanation : List containers are implemented as doubly-linked lists. Doubly linked lists can store each of the elements they contain in different and unrelated storage locations.

Advertisement