#ifndef STRUCT_H#define STRUCT_H#include <iostream>// Define a struct called Nodestruct Node {int data; // Data stored in the nodeNode* next; // Pointer to the next node};// Define a class called LinkedListclass LinkedList {private:Node* head; // Pointer to the head of the linked listpublic:// Constructor to initialize the head to nullptrLinkedList() : head(nullptr) {}// Function to create a new node with the given dataNode* createNode(int data) {Node* node = new Node; // Allocate memory for the new nodenode->data = data; // Set the data of the new nodenode->next = nullptr; // Set the next pointer to nullptrreturn node; // Return the new node}// Function to display the elements of the linked listvoid display() {if (head == nullptr) { // Check if the list is emptystd::cout << "List is empty." << std::endl;return;}Node* temp = head; // Create a temporary pointer to traverse the listwhile (temp != nullptr) {std::cout << temp->data << " "; // Print the data of the current nodetemp = temp->next; // Move to the next node}std::cout << std::endl;}// Function to insert a new node at the head of the linked listvoid insertAtHead(int data) {Node* node = createNode(data); // Create a new node with the given datanode->next = head; // Set the next pointer of the new node to the current headhead = node; // Update the head to point to the new node}// Function to insert a new node at the tail of the linked listvoid insertAtTail(int data) {Node* node = createNode(data); // Create a new node with the given dataif (head == nullptr) { // Check if the list is emptyhead = node; // If empty, set the head to the new node} else {Node* temp = head; // Create a temporary pointer to traverse the listwhile (temp->next != nullptr) {temp = temp->next; // Move to the next node}temp->next = node; // Set the next pointer of the last node to the new node}}// Function to insert a new node at a given position in the linked listvoid insertAtPosition(int data, int position) {if (position <= 0) { // Check if the position is invalidstd::cout << "Invalid position." << std::endl;return;}if (position == 1) { // If position is 1, insert at the headinsertAtHead(data);return;}Node* node = createNode(data); // Create a new node with the given dataNode* temp = head; // Create a temporary pointer to traverse the listint currentPosition = 1;while (temp != nullptr && currentPosition < position - 1) {temp = temp->next; // Move to the next nodecurrentPosition++;}if (temp == nullptr) { // If position is greater than the size of the list, insert at the endinsertAtTail(data);} else {node->next = temp->next; // Set the next pointer of the new node to the next node of temptemp->next = node; // Set the next pointer of temp to the new node}}// Function to delete the first node of the linked listvoid deleteAtHead() {if (head == nullptr) { // Check if the list is emptystd::cout << "List is empty." << std::endl;return;}Node* temp = head; // Create a temporary pointer to store the headhead = head->next; // Update the head to point to the next nodedelete temp; // Delete the old head}// Function to delete the last node of the linked listvoid deleteAtTail() {if (head == nullptr) { // Check if the list is emptystd::cout << "List is empty." << std::endl;return;}if (head->next == nullptr) { // Check if there is only one node in the listdelete head; // Delete the headhead = nullptr; // Set the head to nullptrreturn;}Node* temp = head; // Create a temporary pointer to traverse the listwhile (temp->next->next != nullptr) {temp = temp->next; // Move to the next node}delete temp->next; // Delete the last nodetemp->next = nullptr; // Set the next pointer of the second last node to nullptr}// Function to delete a node with the given data from the linked listvoid deleteNode(int data) {if (head == nullptr) { // Check if the list is emptystd::cout << "List is empty." << std::endl;return;}if (head->data == data) { // Check if the first node contains the datadeleteAtHead();return;}Node* temp = head; // Create a temporary pointer to traverse the listwhile (temp->next != nullptr && temp->next->data != data) {temp = temp->next; // Move to the next node}if (temp->next == nullptr) { // If data is not found in the liststd::cout << "Data not found." << std::endl;return;}Node* nodeToDelete = temp->next; // Store the node to be deletedtemp->next = temp->next->next; // Set the next pointer of temp to the next node of the node to be deleteddelete nodeToDelete; // Delete the node}};#endif // STRUCT_H