Let’s Code Circular Linked List

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

Lecture 205:- Let’s Code Circular Linked List

Here's a complete C++ implementation of a Circular Linked List:

cppCopy code

#include <iostream> class Node { public:    int data;    Node* next;    Node(int data) : data(data), next(nullptr) {} }; class CircularLinkedList { private:    Node* head; public:    CircularLinkedList() : head(nullptr) {}    ~CircularLinkedList() {        if (head) {            Node* current = head;            do {                Node* temp = current;                current = current->next;                delete temp;            } while (current != head);        }    }    void insertEnd(int data) {        Node* newNode = new Node(data);        if (!head) {            head = newNode;            head->next = head; // Make the only node point to itself        } else {            Node* current = head;            while (current->next != head) {                current = current->next;            }            current->next = newNode;            newNode->next = head; // Make the new node point back to the head        }    }    void display() {        if (!head) {            std::cout << "List is empty." << std::endl;            return;        }        Node* current = head;        do {            std::cout << current->data << " -> ";            current = current->next;        } while (current != head);        std::cout << "Head" << std::endl;    } }; int main() {    CircularLinkedList list;    list.insertEnd(1);    list.insertEnd(2);    list.insertEnd(3);    list.display(); // Output: 1 -> 2 -> 3 -> Head    return 0; }

In this implementation, we have a Node class representing each node in the circular linked list. The CircularLinkedList class contains a head pointer, which points to the first node in the list.

The insertEnd method is used to insert a new node at the end of the circular linked list. If the list is empty, the new node becomes the head, and it points to itself. If the list is not empty, we traverse to the last node and make it point to the new node, and the new node points back to the head.

The display method is responsible for printing the elements of the circular linked list. It traverses through the list starting from the head node and continues until the current node points back to the head node, ensuring that we loop through the entire circular list once.

In the main function, we demonstrate how to use the CircularLinkedList class by creating a circular linked list, inserting elements, and then displaying the circular linked list.

10. Linked List

0 Comments

Start the conversation!

Be the first to share your thoughts

Frequently Asked Questions About Sciaku Courses & Services

Quick answers to common questions about our courses, quizzes, and learning platform

Didn't find what you're looking for?

help_center Contact Support