/*
A simple class for Cicular Linear Linked List
*/
#include "cll.h"
using namespace std;
/* Constructor */
cll::cll() {
head = NULL;
total = 0;
}
cll::~cll() { /* Desstructure, no need to fill */
/* Display a list. and total element */
void cll::display() {
if (head == NULL)
cout << "List is empty !" << endl;
else {
cout << "CLL list: ";
node *current = head;
for (int i = 0; i < total; i++) {
cout << current->data << " -> ";
current = current->next;
cout << head->data << endl;
cout << "Total element: " << total << endl;
/* List insert a new value at head in list */
void cll::insert_front(int new_data) {
node *newNode;
newNode = new node;
newNode->data = new_data;
newNode->next = NULL;
if (head == NULL) {
head = newNode;
head->next = head;
} else {
while (current->next != head) {
newNode->next = head;
current->next = newNode;
total++;
void cll::insert_tail(int new_data) {
/* Get total element in list */
int cll::get_size() { return total; }
/* Return true if the requested item (sent in as an argument)
is in the list, otherwise return false */
bool cll::find_item(int item_to_find) {
return false;
if (current->data == item_to_find)
return true;
/* Overloading method*/
int cll::operator*() { return head->data; }
/* Overload the pre-increment operator.
The iterator is advanced to the next node. */
void cll::operator++() {
current->next = head->next;
head = head->next;
total--;