Write Program In C Introduction In this project you are aske

Write Program In C++

Introduction In this project, you are asked to design and implement a class for double link list to hold integers:

In this project, you are asked to design and implement a class for double link list to hold integers:

The class should be called DList, you also need a class called Node that contains an int as the data

Node needs the following data:

int data; //the data held by the node Node* parent; //the parent of the Node Node* child; //the child of the Node

Node needs the following public functions:
Node(int)// constructor to create a Node with the input int

int GetData(); // return the int held by the Node

DList needs a head and tail, both should be pointers to Node, and initialized to NULL

DList needs a default constructor (no parameter), a copy constructor (take const

DList needs the following public functions:

void PushFront(int a); //create a Node containing a //and add it to the front of the list

void PushEnd(int a); //create a Node containing a //and add it to the end of the list

Node* PopFront(); //popping out the first Node of the list, //if the list is empty, return NULL

void PopEnd(); //popping out the last Node of the list, //if the list is empty, return NULL

DList & as input)

void PrintListForward(); //print every element from start to end //in one line separated by a space

void PrintListReverse(); //print every element from end to start //in one line separated by a space

2) Files to turn in:

You need to turn in four files in a tar.gz file: makefile, main.C, DList.C, DList.h. Among them, you need to use the main.C provided which you cannot modify at all.

DList.h declares the class DList and Node. You can make DList the friend of Node so it can access the private data of the Node.

3) Functions:

All member function and operator prototypes are declared in xArray.h, with necessary comments before each function. The following are major functions:

PushBack function is the core of this project, and should be used by other functions if necessary (for example, it can be used by the += and >> operators). This function put the integer at the end of the array. Since the array may not have enough space to hold it, you need to grow the array if necessary.

[ ] operator should check the boundary of data, if idx is not within the boundary, print error message and exit the program; otherwise, return data[idx];

>> operator should read in an integer and put it at the end of the array.

main.C File

Solution

I can\'t provide you a tar.gz file here. This is against Chegg policy. So i\'m providing you the individual files. You can compress those files using the following command

tar -czf Dlistprogram.tar.gz DList.h DList.cpp main.cpp makefile

makefile:


all: DList.o
   g++ -o dlist DList.o main.cpp

DList.o:
   g++ -c -o DList.o DList.cpp

DList.h

#ifndef DLIST_H_
#define DLIST_H_
class Node
{
public:
Node *parent;
int data;
Node(int x);
int GetData();
Node *child;
};

class DList
{

public:
Node *head;
Node *tail;
DList();
DList(const DList & );

void PushFront(int a);
void PushEnd(int a);

Node *PopFront();
Node *PopEnd();

void PrintListForward();
void PrintListReverse();

};

#endif

DList.cpp:

#include<iostream>
using namespace std;
#include \"DList.h\"

Node::Node(int x)
{
parent=NULL;
data=x;
child=NULL;
}

int Node::GetData() { return data;}

DList::DList()
{
head=tail=NULL;
}

DList::DList(const DList &dl)
{
Node *newNode=new Node(dl.head->data);
head=newNode;
tail=newNode;
Node *tmp=head,*tmp2=head;

Node *n=dl.head->child;
  
while(n!=NULL)
{
tmp->child=new Node(n->data);
tmp->child->parent=tmp;

tmp=tmp->child;  
tail=tmp;
n=n->child;
}

}

void DList::PushFront(int a)
{
Node *tmp=new Node(a);
  
if(head==NULL&&tail ==NULL){
head=tail=tmp;
}
else{
tmp->parent=NULL;
head->parent=tmp;
tmp->child=head;
head=tmp;
}
}

void DList::PushEnd(int a)
{
Node *tmp = new Node(a);
if(head==NULL&&tail ==NULL){
head=tail=tmp;
}
else{
tmp->child=NULL;
tmp->parent=tail;
tail->child=tmp;
tail=tmp;
}
}

Node * DList::PopFront()
{

Node *tmp=head;

if(head==NULL)
   return NULL;
  
head=head->child;
if(head!=NULL)
head->parent=NULL;
if(head==NULL)
   tail=NULL;

//tmp->child=NULL;

return tmp;
}

Node * DList::PopEnd()
{

Node *tmp=tail;

if(tail==NULL)
   return NULL;

tail=tail->parent;

if(tail!=NULL)
tail->child=NULL;
if(tail==NULL)
   head=NULL;

tmp->parent=NULL;

return tmp;
}

void DList::PrintListForward()
{
Node *tmp=head;

while(tmp!=NULL)
{
   cout<<tmp->data<<\" \";
   tmp=tmp->child;
}
cout<<endl;
}

void DList::PrintListReverse()
{

Node *tmp=tail;

while(tmp!=NULL)
{
   cout<<tmp->data<<\" \";
   tmp=tmp->parent;
}
cout<<endl;
}

main.cpp:

#include <iostream>
using namespace std;
#include \"DList.h\"

int main() {

DList list;
int i;

//pust 10 numbers to the end
for (i = 0; i < 10; i++) list.PushEnd(i);

cout << \"Print forward\ \";
list.PrintListForward();
cout << \"Print reverse\ \";
list.PrintListReverse();

cout << \"Pop front and print\ \";
//print the list from the beginning
Node* n = list.PopFront();
while ( n != NULL) {
cout << n->GetData() << endl;
n = list.PopFront();
}


//pust 10 numbers to the front
for (i = 0; i < 10; i++) list.PushFront(i);

//test copy constructor
DList* list2 = new DList(list);
  
cout << \"Pop end and print\ \";
//print the list from the end
n = list2->PopEnd();
while ( n != NULL) {
cout << n->GetData() << endl;
n = list2->PopEnd();
}

return 0;
}

Output:

$ ./dlist
Print forward
0 1 2 3 4 5 6 7 8 9
Print reverse
9 8 7 6 5 4 3 2 1 0
Pop front and print
0
1
2
3
4
5
6
7
8
9
Pop end and print
0
1
2
3
4
5
6
7
8
9

Write Program In C++ Introduction In this project, you are asked to design and implement a class for double link list to hold integers: In this project, you are
Write Program In C++ Introduction In this project, you are asked to design and implement a class for double link list to hold integers: In this project, you are
Write Program In C++ Introduction In this project, you are asked to design and implement a class for double link list to hold integers: In this project, you are
Write Program In C++ Introduction In this project, you are asked to design and implement a class for double link list to hold integers: In this project, you are
Write Program In C++ Introduction In this project, you are asked to design and implement a class for double link list to hold integers: In this project, you are
Write Program In C++ Introduction In this project, you are asked to design and implement a class for double link list to hold integers: In this project, you are

Get Help Now

Submit a Take Down Notice

Tutor
Tutor: Dr Jack
Most rated tutor on our site