+ 3
What is difference between doubly and circular doubly linked list?
2 Réponses
+ 5
In a doubly linked list, first node's left link and last node's right link both are NULL whereas in circular doubly linked list first node's left link gets connected with last node's right link or we can say that both hold eachothers address.
0