February 2020
Beginner to intermediate
616 pages
15h 16m
English
In a linear linked list, the nodes are connected one after the other, and each node except the first has a unique predecessor and successor. The last node is set to point at NULL to indicate the termination of the linked list. But in the case of a circular linked list, the next pointer of the last node points back to the first node instead of pointing at NULL. In other words, a circular linked list has no NULL pointer, as can be seen in the following diagram:

The advantage of a circular linked list over a linear linked list is that a circular linked list allows the pointer to move in reverse direction too. In real-world ...
Read now
Unlock full access