Question

In: Computer Science

Make in c++ this Programming Challenge 1. Design your own linked list class to hold a...

Make in c++ this Programming Challenge


1. Design your own linked list class to hold a series of integers. The class should have
member functions for appending, inserting, and deleting nodes. Don’t forget to add a
destructor that destroys the list. Demonstrate the class with a driver program.
2. List Print
Modify the linked list class you created in Programming Challenge 1 to add a print
member function. The function should display all the values in the linked list. Test
the class by starting with an empty list, adding some elements, and then printing the
resulting list out.
3. List Copy Constructor
Modify your linked list class of Programming Challenges 1 and 2 to add a copy constructor.
Test your class by making a list, making a copy of the list, and then displaying
the values in the copy.

List Reverse
Modify the linked list class you created in the previous programming challenges by
adding a member function named reverse that rearranges the nodes in the list so that
their order is reversed. Demonstrate the function in a simple driver program

Solutions

Expert Solution

PLEASE GIVE IT A THUMBS UP, I SERIOUSLY NEED ONE, IF YOU NEED ANY MODIFICATION THEN LET ME KNOW, I WILL DO IT FOR YOU

I have added more function to my answer other than your question

#include <iostream>
using namespace std;
class LinkedList
{
private:
        // Declare a structure for the list.
        struct ListNode
        {
                int value;             // The value in this node.
                struct ListNode *next; // To point to the next node.
        };

        ListNode *head; // List head pointer.

public:
        // Constructor.
        LinkedList()
        {
                head = NULL;
        }

        // Destructor
        ~LinkedList();

        // Linked list operations.
        void appendNode(int);
        void insertNode(int);
        void insertNodeAt(int, int);
        void deleteNode(int);
        void Reverse();
        void deleteAt(int);
        int Search(int);
        void display() const;
};

// appendNode appends a node containing the
// value passed into num, to the end of the list.

void LinkedList::appendNode(int num)
{
        ListNode *newNode; // To point to a new node.
        ListNode *nodePtr; // To move through the list.

        // Allocate a new node and store num there.
        newNode = new ListNode;
        newNode->value = num;
        newNode->next = NULL;

        // If there are no nodes in the list.
        // make newNode the first node.
        if (!head)
                head = newNode;
        else // Otherwise, insert newNode at end.
        {
                // Initialize nodePtr to head of list.
                nodePtr = head;

                // Find the last node in the list.
                while (nodePtr->next)
                        nodePtr = nodePtr->next;

                // Insert newNode as the last node.
                nodePtr->next = newNode;
        } //    end else-if

        display();
} //    end function appendNode

// displayList shows the value stored in each
// node of the linked list pointed to by head.

void LinkedList::display() const
{
        ListNode *nodePtr; // To move through the list

        if (!head)
        {
                cout << "\n\tThe list is empty.";
                return;
        }

        // Position nodePtr at the head of the list.
        nodePtr = head;

        cout << "\n\n\tThe elements in the list are:\n\t";
        // While nodePtr points to a node, traverse the list.

        while (nodePtr)
        {
                // Display the value in this node.
                cout << nodePtr->value << " -> ";

                // Move to the next node.
                nodePtr = nodePtr->next;
        } //    end while.
        cout << "Null";
} //    end function displayList.

// Reverse function re-arranges node in the list.

void LinkedList::Reverse()
{
        ListNode *nodePtr;
        ListNode *next;
        ListNode *result = NULL;
        if (!head)
        {
                cout << "\n\tThe list is empty.";
                return;
        }
        // Position nodePtr at the head of the list.
        nodePtr = head;
        while (nodePtr != NULL)
        {
                next = nodePtr->next;
                nodePtr->next = result;
                result = nodePtr;
                nodePtr = next;
        }
        head = result;
        display();
}

// The insertNode function inserts a node with num copied to its value member.

void LinkedList::insertNode(int num)
{
        ListNode *newNode;             // A new node.
        ListNode *nodePtr;             // To traverse the list.
        ListNode *previousNode = NULL; // The previous node.

        // Allocate a new node and store num there.
        newNode = new ListNode;
        newNode->value = num;
        newNode->next = NULL;

        // If there are no nodes in the list make newNode the first node.
        if (!head)
                head = newNode;
        else // Otherwise, insert newNode.
        {
                // Position nodePtr at the head of list.
                nodePtr = head;

                //    Initialize previousNode to NULL.
                previousNode = NULL;

                //    Skip all nodes whose value is less than num.
                while (nodePtr != NULL && nodePtr->value < num)
                {
                        previousNode = nodePtr;
                        nodePtr = nodePtr->next;
                }

                //If the new node is to be the 1st in the list,
                //    insert it before all other nodes.
                if (previousNode == NULL)
                {
                        head = newNode;
                        newNode->next = nodePtr;
                }
                else // Otherwise insert after the previous node.
                {
                        previousNode->next = newNode;
                        newNode->next = nodePtr;
                }
        } //    end else-if

        display();
} //    end function insertNode.

// The insertNode function inserts a node at pos
//with num copied to its value member.

void LinkedList::insertNodeAt(int num, int pos)
{
        ListNode *newNode;             // A new node.
        ListNode *nodePtr;             // To traverse the list.
        ListNode *previousNode = NULL; // The previous node.
        int i = 0;
        // Allocate a new node and store num there.
        newNode = new ListNode;
        newNode->value = num;
        newNode->next = NULL;
        // Position nodePtr at the head of list.
        nodePtr = head;
        if (pos == 0) //to inserted at first.
        {
                newNode->next = head;
                head = newNode;
        }
        else
        {
                while (nodePtr != NULL && i < pos) //loop to reach position.
                {
                        previousNode = nodePtr;
                        nodePtr = nodePtr->next;
                        i++;
                }
                if (nodePtr == NULL) //position not found.
                        cout << "Invalid Position :" << endl;
                else //inserts node.
                {
                        newNode->next = nodePtr;
                        previousNode->next = newNode;
                }
        }

        display();
}

//    The deleteNode function searches for a node with num as its value.
//The node, if found, is deleted from the list and from memory.

void LinkedList::deleteNode(int num)
{
        ListNode *nodePtr;      // To traverse the list.
        ListNode *previousNode; //To point to the previous node.

        // If the list is empty, do nothing.
        if (!head)
        {
                cout << "\n\tFailed to delete as list is empty.";
                return;
        }

        // Determine if the first node is the one.
        if (head->value == num)
        {
                nodePtr = head->next;
                delete head;
                head = nodePtr;
        }
        else
        {
                // Initialize nodePtr to head of list.
                nodePtr = head;

                // Skip all nodes whose value member is not equal to num.
                while (nodePtr != NULL && nodePtr->value != num)
                {
                        previousNode = nodePtr;
                        nodePtr = nodePtr->next;
                }

                // If nodePtr is not at the end of the list,
                // link the previous node to the node after nodePtr, then delete nodePtr.
                if (nodePtr)
                {
                        previousNode->next = nodePtr->next;
                        delete nodePtr;
                }
                else
                        cout << "\n\tFailed to delete as " << num
                             << " not found in the list.";
        } //    end else-if

        display();
} //    end function deleteNode
void LinkedList::deleteAt(int pos)
{
        ListNode *nodePtr;      // To traverse the list.
        ListNode *previousNode; //To point to the previous node.
        int i = 0;
        // If the list is empty, do nothing.
        if (!head)
        {
                cout << "\n\tFailed to delete as list is empty.";
                return;
        }
        // Position nodePtr at the head of list.
        nodePtr = head;
        if (pos == 0) //to inserted at first.
        {
                nodePtr = head->next;
                delete head;
                head = nodePtr;
        }
        else
        {
                while (nodePtr != NULL && i < pos) //loop to reach position.
                {
                        previousNode = nodePtr;
                        nodePtr = nodePtr->next;
                        i++;
                }
                if (nodePtr)
                {
                        previousNode->next = nodePtr->next;
                        delete nodePtr;
                }
                else
                        cout << "\n\tFailed to delete position " << pos << " not found .";
        } //    end else-if

        display();
} //    end function deleteNode.

//Searches for value and returns position if found returns -1 if not found.

int LinkedList::Search(int value)
{
        ListNode *nodePtr; // To move through the list.
        int pos = -1;
        if (!head)
        {
                cout << "\n\tThe list is empty.\n";
                return -1;
        }

        // Position nodePtr at the head of the list.
        nodePtr = head;
        while (nodePtr)
        {
                pos++;
                if (nodePtr->value == value)
                        return pos;
                else
                        nodePtr = nodePtr->next;
        }
        return -1;
}

// Destructor
//This function deletes every node in the list.

LinkedList::~LinkedList()
{
        ListNode *nodePtr;  // To traverse the list.
        ListNode *nextNode; // To point to the next node.

        // Position nodePtr at the head of the list.
        nodePtr = head;

        // While nodePtr is not at the end of the list.
        while (nodePtr != NULL)
        {
                // Save a pointer to the next node.
                nextNode = nodePtr->next;

                // Delete the current node.
                delete nodePtr;

                // Position nodePtr at the next node.
                nodePtr = nextNode;
        } //    end while
}

int main()
{
        //    declare a variable of type linked list
        LinkedList myList;

        //    declare other variables
        char choice;
        int n;

        //    let the user know about the program
        cout << "\n\n\tA program to demonstrate LinkedList class.";

        //    print a list of choices to the user
        do
        {
                cout << "\n\t\tMENU\n ";
                cout << "\n\n\tAppend a node\t : A";
                cout << "\n\tInsert a node\t : I";
                cout << "\n\tInsert a node At : P";
                cout << "\n\tDelete a node\t : D";
                cout << "\n\tRemove node At\t : T";
                cout << "\n\tSearch a node\t : S";
                cout << "\n\tReverse nodes    : R";
                cout << "\n\tQuit \t         : Q";

                //    prompt and read the user's choice.
                cout << "\n\n\tEnter your choice: ";
                cin >> choice;

                //do appropriate action basing on choice selected.
                switch (choice)
                {
                case 'A':
                case 'a':
                        //    prompt and read an integer.
                        cout << "\tEnter an integer: ";
                        cin >> n;

                        //    append the number into list.
                        myList.appendNode(n);
                        break;

                case 'I':
                case 'i':
                        //    prompt and read an integer.
                        cout << "\tEnter an integer: ";
                        cin >> n;

                        //    insert the number into list.
                        myList.insertNode(n);
                        break;

                case 'D':
                case 'd':
                        //    prompt and read an integer.
                        cout << "\tEnter an integer : ";
                        cin >> n;

                        //    delete the number from list.
                        myList.deleteNode(n);
                        break;
                case 'R':

                case 'r': //Reversing nodes of list.
                        myList.Reverse();
                        break;
                case 'T':
                case 't':
                        int pos;
                        //prompt a integer to search.
                        cout << "\tEnter element position to be deleted:";
                        cin >> pos;
                        myList.deleteAt(pos);
                        break;

                case 'S':
                case 's':
                        int position;
                        //prompt a integer to search.
                        cout << "Enter element to be searched:";
                        cin >> n;
                        //Search element.
                        position = myList.Search(n);
                        if (position == -1)
                                cout << "\tElement not found in the list" << endl;
                        else
                                cout << "\tElement found at:" << position << endl;
                        break;
                case 'P':
                case 'p':
                        int Loc;
                        //    prompt and read an integer.
                        cout << "\tEnter an integer: ";
                        cin >> n;
                        //prompt a integer to search.
                        cout << "\tEnter position to be inserted:";
                        cin >> Loc;
                        myList.insertNodeAt(n, Loc);
                        break;

                case 'Q':
                case 'q':
                        choice = 'q';
                } //    end switch

        } while (choice != 'q'); //    end do-while

        return 0; // indicate program executed successfully
} // end of function, main

Related Solutions

Develop a C++ "doubly" linked list class of your own that can hold a series of...
Develop a C++ "doubly" linked list class of your own that can hold a series of signed shorts Develop the following functionality: Develop a linked list node struct/class You can use it as a subclass like in the book (Class contained inside a class) You can use it as its own separate class Your choice Maintain a private pointer to a node class pointer (head) Constructor Initialize head pointer to null Destructor Make sure to properly delete every node in...
Could you check/edit my code? Design and implement your own linked list class to hold a...
Could you check/edit my code? Design and implement your own linked list class to hold a sorted list of integers in ascending order. The class should have member function for inserting an item in the list, deleting an item from the list, and searching the list for an item. Note: the search function should return the position of the item in the list (first item at position 0) and -1 if not found. In addition, it should member functions to...
C++ Using an appropriate definition of ListNode, design a simple linked list class with only two...
C++ Using an appropriate definition of ListNode, design a simple linked list class with only two member functions and a default constructor: void add(double x); boolean isMember(double x); LinkedList( ); The add function adds a new node containing x to the front (head) of the list, while the isMember function tests to see if the list contains a node with the value x. Test your linked list class by adding various numbers to the list and then testing for membership....
JAVA How to make a graph class that uses a linked list class to store nodes...
JAVA How to make a graph class that uses a linked list class to store nodes and linked list within each node to store adjacency list The linked list class has been made already.   import java.util.*; public class LinkedList implements Iterable { private int size = 0; private Node head; private Node tail; private class Node { private T data; private Node prev; private Node next; public Node(T data) { this.data = data; } }    public Iterator iterator() {...
C++ Linked Lists Practice your understanding of linked lists in C++ by creating a list of...
C++ Linked Lists Practice your understanding of linked lists in C++ by creating a list of songs/artist pairs. Allow your user to add song / artist pairs to the list, remove songs (and associated artist) from the list and be sure to also write a function to print the list! Have fun! Make sure you show your implementation of the use of vectors in this lab (You can use them too ) You MUST modularize your code ( meaning, there...
A Bookstore Application C++ Design the class Book. Each object of the class Book can hold...
A Bookstore Application C++ Design the class Book. Each object of the class Book can hold the following information about a book: title, authors, publisher, ISBN Include the member functions to perform the various operations on the objects of Book. For example, the typical operations that can be performed on the title are to show the title, set the title. Add similar operations for the publisher, ISBN , and authors. Add the appropriate constructors and a destructor (if one is...
Please use C++ and linked list to solve this problem Linked list 1 -> 3 ->...
Please use C++ and linked list to solve this problem Linked list 1 -> 3 -> 4 -> 5-> 6 ->7 replaceNode( 5 , 6) // Replace 5 with 6     result 1 -> 3 -> 4 -> 6 -> 6 ->7 Base code #include <iostream> using namespace std; class Node { public:     int data;     Node *next;     Node(int da = 0, Node *p = NULL) {         this->data = da;         this->next = p;     } };...
Please use C++ and linked list to solve this problem Linked list 1 -> 2 ->...
Please use C++ and linked list to solve this problem Linked list 1 -> 2 -> 3 -> 4 -> 5-> 6 ->7 replaceNode( 5 , 6) // Replace 5 with 6     result 1 -> 2 -> 3 -> 4 -> 6 -> 6 ->7 Base code #include <iostream> using namespace std; class Node { public:     int data;     Node *next;     Node(int da = 0, Node *p = NULL) {         this->data = da;         this->next =...
Can you make this singular linked list to doubly linked list Create a Doubly Linked List....
Can you make this singular linked list to doubly linked list Create a Doubly Linked List. Use this to create a Sorted Linked List, Use this to create a prioritized list by use. Bring to front those links recently queried. -----link.h------ #ifndef LINK_H #define LINK_H struct Link{ int data; Link *lnkNxt; }; #endif /* LINK_H */ ----main.cpp---- //System Level Libraries #include <iostream> //I/O Library using namespace std; //Libraries compiled under std #include"Link.h" //Global Constants - Science/Math Related //Conversions, Higher Dimensions...
c++ Create a class named EvolutionTree which will hold a list of species and their expected...
c++ Create a class named EvolutionTree which will hold a list of species and their expected age, and allow a user to search for a particular species or an age. EvolutionTree should have private data members: species (a string array of size 400 with all the species) speciesAges (an int array of size 400 for all the species' ages). EvolutionTree should have a default constructor which should initialize the species array to empty strings ("") and initialize the speciesAges array...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT