Circular Linked List
A Circular Linked Data Structure will have nodes that have:
- Data
 - Address which points to the next node
 - The last node in turn points to the starting node, therefore forming a chain
 
Circular Linked List in C++
struct Node 
{ 
    int data; 
    struct Node *next; 
};
    
Top comments (0)