GEP interview question

What is a circular linked list?

Interview Answer

Anonymous

22 Oct 2020

In a circular linked list, the last node of the list contains a pointer to the first node of the list. We can have circular singly linked list as well as circular doubly linked list.