Starting from:

$25

CS 2413 Data Structures Programming Project 2

The goal of this project is to create extend the DataFrame class in C++ developed in Project 1 as outlined in the project description. Document your project thoroughly as the examples in the textbook (20 point penalty for poor documentation). This includes but not limited to brief header comments for all classes/methods, explanatory comments for each section of code, meaningful variable and method names, and consistent indentation. Project Description

In this project you will create a new templated DataFrame class along with the all the methods that are represented in the class definition. DataFrame is a table with rows and columns – columns have names associated with them. Each row of the DataFrame is a single <DT (RowObject in this case), so the DataFrame maintains an array of pointers to RowObject. The RowObject class is also defined below.

After you have tested your class, you have to execute the main program that is also given below.

RowObject Class


DataFrame Class
template <class DT class DataFrame { protected:

DT** dataRows; // array of pointers to DT object

char** colNames; int noRows, noCols; public:

DataFrame ();

DataFrame(int numberOfRows, int numberOfColumns); void display();

void display(int n); // display the first n records void setColName(int col, const char* name); DT& operator[] (int i); //get the ith row char** getColNames(); int getNumberRows();

DataFrame<DT* getRows(int* rows, int rLen);

void addRow(DT& newRow); // add a new row at the last row

void removeRow(int i); //remove the ith row void insertRow(int position, DT& newRow);

void ~DataFrame();

//write the ostream operator

//write the = operator for an extra 10 points

};

The main function
// Write all the methods here and execute the following main program with some code that you need to write.





Constraints
1. In this project, the only header you will use is #include <iostream.

2. None of the projects is a group project. Consulting with other members of this class on programming projects is strictly not allowed and plagiarism charges will be imposed on students who do not follow this.

More products