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
3
Circular Doubly Linked List
Answered by
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