➜
KUMAR SHIVAM
Explain circular doubly linked list ?
Data Structures and Algorithms
Answer in Short
Circular doubly linked list is a more complexed type of data structure in which a node contain pointers to its previous node as well as the next node.
Explanation
1311
0
==> Circular doubly linked list--
Circular doubly linked list is
a more complexed type of data structure in which a node contain pointers to its previous node as well as the next node
.
Circular doubly linked list doesn't contain NULL in any of the node. The last node of the list contains the address of the first node of the list.
Share:
KUMAR SHIVAM
More Questions from
Data Structures and Algorithms Module 3
<p>Define Linked List. Advantages and disadvantages of Linked List ? </p>
<p>Define linked list. Explain Types of Linked Lists ? </p>
<p>Explain Representation of Linked List in Memory ? </p>
<p>Explain Linked List Operations ? </p>
<p>Define node. Write functions to insert the node at front and rear end ? </p>