Social Sciences, asked by niveda3359, 11 hours ago

Write a ‘C’ program to create Circularly Doubly Linked list and display it.

Answers

Answered by srishtidhakate2010
1

Explanation:

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. The first node of the list also contain address of the last node in its previous pointer.

A circular doubly linked list is shown in the following figure.

Similar questions