Computer Science, asked by atul6901, 1 year ago

The linked list in which last node of linked list points to first node and first node also points to last node is called as.

Answers

Answered by atd01
3
Circular Doubly Linked List
Answered by praseethanerthethil
1

Answer:

A linked list is a common data structure made of a chain of nodes where each node contains a value and a pointer to the next node in the chain. The head pointer points to the first node, and the last element of the list points to null .

Similar questions