Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For this assignment you will write a program that reads in data and stores that data in a special kind of linked list. The two

For this assignment you will write a program that reads in data and stores that data in a special kind of linked list.

The two primary objectives of this assignment are to learn how to implement a specialized linked list and to gain familiarity with using a linked list in solving problems. STL linked list, or any other premade linked list are disallowed. For this assignment you'll be creating a "triply-threaded linked list". ======================================================================== Details

The following sections provides details about the requirements for the assignment.

-------------------------------------------------------------------- Sensor Data

Each unit of sensor data contains three data items: sector number, exposure value, speed value. The sector number represents the geographic sector that the reading was taken from. The exposure value represents the percentage of exposure to sunlight that the sensor read at the time of the reading. The speed value represents the wind speed (in kh/hr) that the sensor read at that location. Each sector has only one sensor but that sensor takes several readings.

Some of the sensors are bad and intermittently produce incorrect data. When this happens, either the exposure or the speed value will be -1. In this case, none of the data from that sensor can be trusted and it must all be discarded. Note that this isn't just the one bad reading that should be discarded, but ALL data from that sensor. This logic is already captured in process.cpp. As long as you implement addData() and removeSector() correctly, then you don't have to do anything extra to get rid of bad data.

---------------------------------------------------- Triply-threaded Linked List

As you have learned, a linked list is a list of linked nodes. In its simplest form, this is implemented by a node that holds data and a pointer to the next node in the chain. This pointer is often referred to as the "next pointer". Sometimes the order of the nodes in the linked list doesn't matter but other times the order matters and items are inserted into the list in the correct position. That is, while inserting into a linked list, you traverse down the list to find the right place to insert an item and then insert it there.

A simple linked list is sometimes sufficient for an application but more often than not a more sophisticated link structure is needed. For this program you will be creating a "triply-threaded linked list". This is just a linked list that contains three next pointers in each node. One next pointer for the next sequential sector number, one next pointer for the next sequential exposure value, and one for the next sequential speed value. Except for very rare situations, the three next pointers will point to different nodes. Each chain of next pointers of the same type represents a "thread" through all of the nodes ordered according to that type (smallest to largest). You will also need three head pointers in your class since each chain will likely start with a different node. Remember, the first node in a chain represents the smallest value for that type. It is unlikely the the same node contains the lowest sector number, the lowest exposure value, and the lowest windpseed.

When you add or remove an item from the linked list, you will need to add or remove it from each thread.

IMPORTANT: this is probably the most important detail about a "triply-threaded linked list. For each data item there only ONE node. A "triply-threaded linked list" is not the same thing a three linked lists. With three linked lists you would have a 3n nodes (for n data readings) but for a "triply-threaded linked list" you will have n nodes (for n data readings).

------------------------------------------------------- Report Output and Format

The report that your program outputs contains the following five sections. Each section is described in more detail below. The example output files that are included with the assignment show the exact format for each.

- Data values - Averages per sector - Histogram data for exposure - Histogram data for speed - Bad sectors

The "Data values" section lists all of the read in values three times. The first time it displays all of the values in order according to the sector number (smallest to largest). The second time it displays all of the values in order according to the exposure value (smallest to largest). The third time it displays all of the values in order according to the speed value (smallest to largest). Each list is proceeded with a section header that explains what the list is. For example "Data by sector".

Each line that shows the data in a sector shows the sector number, the exposure, and the speed. The format is:

Sector: # % exposure, kh/hr windspeed

For example:

Sector: #1 81% exposure, 17 km/hr windspeed

The "Averages per sector" section lists each of the sectors that has data and shows the average exposure and speed for that particular sector. This uses the same line format as the "Data values" section. For example, the following line shows that across all readings, the average exposure in sector #1 was 81% and the average windspeed was 17 km/hr.

Sector: #1 81% exposure, 17 km/hr windspeed

The two histogram sections are the same format. The first shows the data for exposure and the second for speed. Histogram data is the number of times that a particular value occurs in the dataset. Each line in the histogram data section is a simple value, count pair. The following example is for a value of 81 that occurs once:

81, 1

The "Bad sectors" section lists all of the bad sectors. The list of bad sectors is a comma separated list of sectors with no line breaks. For example:

17, 51, 119, 170, 187, 204, 221, 255, 272, 289, 306, 340, 374, 391, 408, 442, 493

Each section heading consists of a line of 70 dashes, the title of the sections, and then another line of 70 dashes. For example:

--- ... ... --- Data values --- ... ... ---

All of the reporting is done on the cleaned version of the data. That is, it doesn't include any data from bad sectors. ========================================================================= Design

The design of your program is just as important as the functionality of the program. The following sections define the design guidelines and some of the implementation requirements (in additional to what was described above).

-------------------------------------------------------------- Design Guidelines

- The most important design decision is to use a separate class for the datalogger, linkedlist, and surveydata classes.

- datalogger -- This class represents the "business logic" of adding data to the storage. This is the only class that process.cpp knows about and it expects these methods: - addData() -- add a data item to the logger - removeSector() -- remove all survey data for the given sector - containsSector() -- determine if the given sector data is already in the logger - printReport() -- print a report - printSectorList() -- print a list of all of the sectors in the logger - linkedlist -- This class should implement a linked list. This class should be distinct from the datalogger class. - surveydata -- This class encapsulates the survey data (sector, exposure, speed).

- The datalogger will need to have a linkedlist class member but there should be no "linked list" knowledge in the datalogger. For example, the datalogger must not have access to "nodes" in the linked list or use the "next" pointers. All interaction with the linkedlist list object should be via the linkedlist APIs (that you define) but should hide the mechanics of how a linked list works from the datalogger.

You are welcome to create any additional classes that you need.

=========================================================================

process.cpp file

#include #include #include "datalogger.h"

using namespace std;

void createReport(datalogger& dl,const char* label) { dl.printReport(); }

void listBadSectors(datalogger& dl) { cout << "----------------------------------------------------------------------" << endl; cout << "Bad sectors" << endl; cout << "----------------------------------------------------------------------" << endl; dl.printSectorList(); }

int main(int argc, char** argv) {

datalogger data; datalogger badSectorData; // a list of items with bad sectors

if (argc != 2) { cout << "Usage: " << argv[0] << " " << endl; exit(0); }

// Read the data

char* datafile = argv[1]; ifstream inDatafile(datafile); int sector; int exposure; int speed; while (!inDatafile.eof()) { inDatafile >> sector; inDatafile >> exposure; inDatafile >> speed;

if (!inDatafile.eof()) { data.addData(sector, exposure, speed); if (((exposure < 0) || (speed < 0)) && !badSectorData.containsSector(sector)) { badSectorData.addData(sector,exposure,speed); }

if (badSectorData.containsSector(sector)) { data.removeSector(sector); } } } createReport(data,"Data"); listBadSectors(badSectorData);

return(0); }

=========================================================================

example output:

---------------------------------------------------------------------- Data values ---------------------------------------------------------------------- Data by Sector Sector: #1 39% exposure, 58 km/hr windspeed Sector: #1 76% exposure, 30 km/hr windspeed Sector: #1 48% exposure, 24 km/hr windspeed Sector: #2 57% exposure, 21 km/hr windspeed Sector: #2 41% exposure, 45 km/hr windspeed Sector: #3 67% exposure, 19 km/hr windspeed Sector: #3 9% exposure, 38 km/hr windspeed Sector: #3 4% exposure, 25 km/hr windspeed Sector: #4 76% exposure, 10 km/hr windspeed Sector: #4 1% exposure, 32 km/hr windspeed Sector: #4 100% exposure, 15 km/hr windspeed Sector: #4 30% exposure, 1 km/hr windspeed Sector: #5 16% exposure, 21 km/hr windspeed Sector: #5 46% exposure, 45 km/hr windspeed Sector: #6 93% exposure, 36 km/hr windspeed Sector: #6 67% exposure, 24 km/hr windspeed Sector: #6 57% exposure, 18 km/hr windspeed Sector: #6 19% exposure, 5 km/hr windspeed

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_2

Step: 3

blur-text-image_3

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

Spatial Databases With Application To GIS

Authors: Philippe Rigaux, Michel Scholl, Agnès Voisard

1st Edition

1558605886, 978-1558605886

More Books

Students also viewed these Databases questions

Question

List the four steps in the model for giving praise.

Answered: 1 week ago

Question

List the criteria for setting objectives.

Answered: 1 week ago

Question

Describe four content motivation theories.

Answered: 1 week ago