Question: Doubly Linked List is a data structure that holds a list of items with double links: previous and next. In this homework, you need to

Doubly Linked List is a data structure that holds a list ofDoubly Linked List is a data structure that holds a list of items with double links: previous and next. In this homework, you need to implement all functions in the defined ListLinked class (prototype is provided by the instructor). Please download the header file (ListLinked.h) from ecourses, read the comments and complete them using C++. You need to implement all of the ListLinked ADT functions in ListLinked.cpp file, and test them in main.cpp.

//-------------------------------------------------------------------- // // Homework 3 ListLinked.h // // Class declaration for the Doubly linked implementation of the List ADT // //--------------------------------------------------------------------

#ifndef LISTLINKED_H #define LISTLINKED_H

#include

using namespace std;

template class ListNode { // doubly linked list node public: ListNode(const DataType& nodeData, ListNode* nextPtr, ListNode* prevPtr);

DataType dataItem; ListNode* next; ListNode* prev; };

template class List { // a list implemented using doubly linked nodes public: List(); List(const List& other); // copy constructor List& operator=(const List& other); // assignment operator ~List();

void insert(const DataType& newDataItem); // insert an item after cursor void remove(); // remove the cursor node, and move the cursor to the next node. If the removed node is the last node, move the cursor to the beginning of the list void replace(const DataType& newDataItem); // replace the cursor node value void clear(); // clear the list, remove all nodes

bool isEmpty() const; bool isFull() const;

void gotoBeginning(); // move cursor to the beginning of the list void gotoEnd(); // move cursor to the end of the list bool gotoNext(); // move cursor to the next node, return false if no next node is available bool gotoPrior(); // move cursor to the prior node, return false if no prior node is available

DataType getCursor() const; // return the value of the cursor node

void moveToBeginning(); // move the cursor node to the beginning of the list

void insertBefore(const DataType& newDataItem); // insert a new item before the cursor

void print() const; // print the list, mark the cursor node

private: // Do not change them for this homework ListNode* head; ListNode* cursor;

};

#endif

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!