Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

i need help with question 2 (c++) please Q1. (10 marks) Implement the class Node in the class. A Node has (1) a unique identity;

i need help with question 2 (c++) please image text in transcribed
Q1. (10 marks) Implement the class Node in the class. A Node has (1) a unique identity; (2) data value. The member functions are (1) getting values; (2) setting values; (3) cloning the Node, by returning a new Node object with the same value but with a new unique identity. Create a driver (i.e., Node Test.cpp file that contains the main function) to test the class. You need to submit the following files: Node.h, Node.cpp, Node Test.cpp. Q2. (40 marks) Create a class NodeList that contains Node objects. It has the following data members: class NodeList private: static const size_t LIST_SIZE = 500; // the maximum items in the list Node *items; // items will point to the dynamically allocated array size_t numitems; // the number of items currently in the list public: Il member functions to be defined } The class should have the following member functions: - One or multiple constructors - A copy constructor - A function that prints all the Node ID and values. - A function that checks if a Node exists in a list by given the ID or the values. - Accessing functions - A destructor Create a driver to test the class. Submit the files: NodeList.h, NodeList.cpp, Node Test.cpp

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Management Databases And Organizations

Authors: Richard T. Watson

3rd Edition

0471418455, 978-0471418450

More Books

Students also viewed these Databases questions