mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
134 lines
2.6 KiB
C++
134 lines
2.6 KiB
C++
/*
|
|
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
|
|
{
|
|
node *current = head;
|
|
while (current->next != head)
|
|
{
|
|
current = current->next;
|
|
}
|
|
newNode->next = head;
|
|
current->next = newNode;
|
|
head = newNode;
|
|
}
|
|
total++;
|
|
}
|
|
|
|
/* List insert a new value at head in list */
|
|
void cll::insert_tail(int new_data)
|
|
{
|
|
node *newNode;
|
|
newNode = new node;
|
|
newNode->data = new_data;
|
|
newNode->next = NULL;
|
|
if (head == NULL)
|
|
{
|
|
head = newNode;
|
|
head->next = head;
|
|
}
|
|
else
|
|
{
|
|
node *current = head;
|
|
while (current->next != head)
|
|
{
|
|
current = current->next;
|
|
}
|
|
current->next = newNode;
|
|
newNode->next = head;
|
|
}
|
|
total++;
|
|
}
|
|
|
|
/* 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)
|
|
{
|
|
if (head == NULL)
|
|
{
|
|
cout << "List is empty !" << endl;
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
node *current = head;
|
|
while (current->next != head)
|
|
{
|
|
if (current->data == item_to_find)
|
|
return true;
|
|
current = current->next;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/* Overloading method*/
|
|
int cll::operator*() { return head->data; }
|
|
|
|
/* Overload the pre-increment operator.
|
|
The iterator is advanced to the next node. */
|
|
void cll::operator++()
|
|
{
|
|
if (head == NULL)
|
|
{
|
|
cout << "List is empty !" << endl;
|
|
}
|
|
else
|
|
{
|
|
node *current = head;
|
|
while (current->next != head)
|
|
{
|
|
current = current->next;
|
|
}
|
|
current->next = head->next;
|
|
head = head->next;
|
|
}
|
|
total--;
|
|
}
|