Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I need help with my Computer Science 2 project. Develop a high-quality, object-oriented C++ program that performs a simulation using a heap implementation of a

I need help with my Computer Science 2 project.

Develop a high-quality, object-oriented C++ program that performs a simulation using a heap implementation of a priority queue.

A simulation creates a model of a real-world situation, allowing us to introduce a variety of conditions and observe their effects. For instance, a flight simulator challenges a pilot to respond to varying conditions and measures how well the pilot responds. Simulation is frequently used to measure current business practices, such as the number of checkout lines in a grocery store or the number of tellers in a bank, so that management can determine the fewest number of employees required to meet customer needs.

Airlines have been experimenting with different boarding procedures to shorten the entire boarding time, keep the flights on-time, reduce aisle congestion, and make the experience more pleasant for passengers and crew. A late-departing flight can cause a domino effect:

the departure gate is tied up and cannot be used by other landing or departing flights,

passengers on board the late flight may miss connecting flights and require rebooking and possibly overnight arrangements (meals and lodging), etc., and

passengers complain about being late, and/or about having to rearrange their plans.

Thus, late flights have a huge operational impact.

******************************************************

I need help with this part.

For this project, we will simulate boarding procedures for Airworthy Airlines. The Airline's current procedure is as follows:

pre-board in the following order:

families with young children or people who need help (e.g., wheelchair)

first class and/or business class passengers

elite passengers (frequent fliers) and those passengers seated in exit rows

conduct general boarding in reverse, from the back of the plane to the front in the following order:

rows 23-26

rows 17-22

rows 11-16

rows 5-10

Airworthy is considering revising their boarding procedure such that general boarding is done randomly, meaning the first passenger in line for general boarding is the first passenger to board (i.e., general boarding passengers all have the same priority). Airworthy suspects this random general boarding method will improve the flow of passengers, getting them on board and seated more quickly. It is also less labor-intensive for Airworthy's customer service agents because it significantly reduces the number of boarding announcements required and eliminates confrontations with customers trying to board "out of turn." Note that the revision is to general boarding only. The pre-boarding procedures will not be changed.

Develop an object-oriented C++ program that simulates these two boarding procedures using a heap implementation of a priority queue. Assume that all passengers are already checked in and at the gate area when boarding begins for both scenarios. The simulation should model an Airbus A320-200 plane, which is configured as follows:

Rows 1 through 4 are first class seats (4 seats in each row)

Rows 5 through 26 are coach class seats (6 seats in each row)

Rows 10 and 11 are exit rows

******************************************************

Your program must consist of the Heap_PriorityQueue class from the textbook (which inherits from PriorityQueueInterface and uses the ArrayMaxHeap and HeapInterface classes, which are also provided), the PrecondViolatedExcep class from the textbook, the Passenger class and Airworthy class that you create, and a separate file named SimulationProject.cpp that contains the main() method. When designing and implementing the program, apply good software engineering principles. Create a makefile for the program. Be sure to follow the style guide and be sure to use Javadoc style comments appropriately.

Start the analysis and design process by drawing a complete UML class diagram for the program that includes the application and all the classes that are contained in the program, including the classes provided by the textbook and the classes that you create. After you have completed the program, update the UML class diagram to reflect the completed implementation.

The files for the Heap_PriorityQueue, the PriorityQueueInterface, the ArrayMaxHeap, the HeapInterface, and the PrecondViolatedExcep classes (Heap_PriorityQueue.h, Heap_PriorityQueue.cpp, PriorityQueueInterface.h, ArrayMaxHeap.h, ArrayMaxHeap.cpp, HeapInterface.h, PrecondViolatedExcep.h, and PrecondViolatedExcep.cpp) are provided in a zipped folder, along with input files for the program. Note that the priority queue must store Passenger objects, and the > and < operators must be defined for that class because the ArrayMaxHeap class uses those overloaded operators.

Develop a Passenger class that stores the following data for an Airworthy Airlines passenger:

key - the priority value for the PriorityQueue

passenger's last name

passenger type, a character, where 'H' is a child or passenger who needs help in boarding, 'E' is an elite passenger (frequent flyer), and 'G' is a general boarding passenger

row where passenger is seated; must be a number between 1 and 26, where rows 1-4 are first class and rows 10 and 11 are exit rows

Include a constructor and accessors and mutators for each attribute. In addition, you MUST include methods that overload the < and > operators. You may include other methods, if needed.

Develop an Airworthy class that contains the following data members:

exactly one priority queue where the priority is set using Airworthy's previous boarding procedure

exactly one priority queue where the priority is set using Airworthy's new random boarding procedure

the amount of time, in seconds, required to board a plane using Airworthy's previous boarding procedure

the amount of time, in seconds, required to board a plane using Airworthy's new random boarding procedure

You may use additional attributes, as needed. The Airworthy class must include methods to support the following functions of the class:

a constructor

read the data from the input file

load the two priority queues

run the simulation

Be sure to incorporate adequate error checking for all files and for the priority queue, providing error messages as needed. When setting the priority (the key) for a passenger, keep the pre-boarding procedure described above in mind.

When running the simulation, assume that:

A passenger who is not blocked by another passenger requires one second to board.

A passenger is blocked when the previous passenger is sitting in the same row or a row closer to the front of the plane. A blocked passenger requires 25 seconds to board.

For example,

Passenger 1 seated in row 5 - not blocked (no one in front) - add 1 Passenger 2 seated in row 3 - not blocked (previous passenger's row is 5) - add 1 Passenger 3 seated in row 10 - blocked (previous passenger's row is 3) - add 25 Passenger 4 seated in row 15 - blocked (previous passenger's row is 10) - add 25 Passenger 5 seated in row 9 - not blocked (previous passenger's row is 15) - add 1 Passenger 6 seated in row 7 - not blocked (previous passenger's row is 9) - add 1 Passenger 7 seated in row 9 - blocked (previous passenger's row is 7) - add 25

The SimulationProject.cpp file contains a main() method and a method named description() that provides a detailed description for the user, explaining what the program is doing, how it works, and the location of all output files. Note that the description() method does NOT substitute for Javadoc comments. The audience for the description() method consists of non-technical users who have no information at all about the program or the assignment. The main() method must support the following:

call the description() method

call methods of the Airworthy class to load the priority queues and run the simulation using both the previous boarding procedure and the new random boarding procedure for each of 3 different input files. Each input file contains, on each line, the last name of the passenger, the type of passenger, and the row number in which the passenger is seated. The input files are:

airworthy100.txt which loads the plane at 100% of capacity

airworthy85.txt, which loads the plane at 85% of capacity

airworthy70.txt, which loads the plane at 70% of capacity

call methods of the Airworthy class to create 3 different output files named results100.txt, results85.txt, and results70.txt. Each output file should contain the data related to its similarly named input file. Be sure to title each part of the output and label all data so it is easy to identify. Each file should contain:

a list of each passenger read from the input file, showing the passenger's name, type, and row

a list of each passenger in order as they are removed from the priority queue when running the simulation using the current boarding procedure, showing the passenger's name, type, row, and priority value (the key)

the total number of minutes (shown with 2 decimal places) required to board the plane using the current boarding procedure,

a list of each passenger in order as they are removed from the priority queue when running the simulation for using the new random boarding procedure, showing the passenger's name, type, row, and priority value (the key), and

the total number of minutes (shown with 2 decimal places) required to board the plane using the new random boarding procedure.

Be sure to follow the Project Guidelines & Evaluation Criteria, since the project will be evaluated using this criteria. In addition, be sure to use javadoc-style comments appropriately. When creating javadoc-style comments, keep in mind that the comment will eventually become part of an html file that will be used by other programmers on your programming team, and by maintenance programmers. Remember also that maintenance programmers have not seen the assignment (the specification), so the information you are providing here must provide all of the detailed information another programmer will need to completely understand the program and to maintain the code. This program is worth 10% of your overall course grade, and it will require a major time investment.

Output Examples (Assume 30 passengers):

(When the program reads an external file and runs, it should generate the results as the following example, and the results are saved into another output file.)

Original List in the file: Vang G 23 Velazquez G 5 Langley G 17 Buckner G 14 Barlow G 18 Guthrie G 11 Hyde G 21 Delacruz H 22 Foreman G 7 Hewitt G 12 Downs G 15 Franks G 7 Hendrix G 8 Finch E 10 Mcleod G 10 Workman G 21 Byers G 15 Mcfadden E 13 Goff G 14 Madden G 5 Burris G 2 Talley G 24 Tyson E 20 Lancaster G 18 Burks E 11 Hahn G 8 Clements E 24 Holden G 23 Witt G 6 Snider E 22

Boarding in Previous Procedure ... Last Name Type Row Key Delacruz H 22 30 Burris G 2 29 Guthrie G 11 28 Finch E 10 27 Mcleod G 10 26 Mcfadden E 13 25 Tyson E 20 24 Burks E 11 23 Clements E 24 22 Snider E 22 21 Vang G 23 20 Talley G 24 19 Holden G 23 18 Langley G 17 17 Barlow G 18 16 Hyde G 21 15 Workman G 21 14 Lancaster G 18 13 Buckner G 14 12 Hewitt G 12 11 Downs G 15 10 Byers G 15 9 Goff G 14 8 Velazquez G 5 7 Foreman G 7 6 Franks G 7 5 Hendrix G 8 4 Madden G 5 3 Hahn G 8 2 Witt G 6 1 Total boarding time: 6 minutes and 54 seconds. Boarding in Random Procedure ... Last Name Type Row Key Delacruz H 22 30 Burris G 2 29 Guthrie G 11 28 Finch E 10 27 Mcleod G 10 26 Mcfadden E 13 25 Tyson E 20 24 Burks E 11 23 Clements E 24 22 Snider E 22 21 Vang G 23 20 Velazquez G 5 19 Langley G 17 18 Buckner G 14 17 Barlow G 18 16 Hyde G 21 15 Foreman G 7 14 Hewitt G 12 13 Downs G 15 12 Franks G 7 11 Hendrix G 8 10 Workman G 21 9 Byers G 15 8 Goff G 14 7 Madden G 5 6 Talley G 24 5 Lancaster G 18 4 Hahn G 8 3 Holden G 23 2 Witt G 6 1 Total boarding time: 6 minutes and 30 seconds.

/****************************** PriorityQueueInterface.h ******************************/

#ifndef _PRIORITY_QUEUE_INTERFACE #define _PRIORITY_QUEUE_INTERFACE

template class PriorityQueueInterface

{ public: /** Sees whether this priority queue is empty. @return True if the priority queue is empty, or false if not. */ virtual bool isEmpty() const = 0; /** Adds a new entry to this priority queue. @post If the operation was successful, newEntry is in the priority queue. @param newEntry The object to be added as a new entry. @return True if the addition is successful or false if not. */ virtual bool add(const ItemType& newEntry) = 0; /** Removes from this priority queue the entry having the highest priority. @post If the operation was successful, the highest priority entry has been removed. @return True if the removal is successful or false if not. */ virtual bool remove() = 0; /** Returns the highest-priority entry in this priority queue. @pre The priority queue is not empty. @post The highest-priority entry has been returned, and the priority queue is unchanged. @return The highest-priority entry. */ virtual ItemType peek() const = 0; }; // end PriorityQueueInterface #endif

/****************************** HeapInterface.h ******************************/

#ifndef _HEAP_INTERFACE #define _HEAP_INTERFACE

template class HeapInterface { public: /** Sees whether this heap is empty. @return True if the heap is empty, or false if not. */ virtual bool isEmpty() const = 0; /** Gets the number of nodes in this heap. @return The number of nodes in the heap. */ virtual int getNumberOfNodes() const = 0; /** Gets the height of this heap. @return The height of the heap. */ virtual int getHeight() const = 0; /** Gets the data that is in the root (top) of this heap. For a maxheap, the data is the largest value in the heap; for a minheap, the data is the smallest value in the heap. @pre The heap is not empty. @post The roots data has been returned, and the heap is unchanged. @return The data in the root of the heap. */ virtual ItemType peekTop() const = 0; /** Adds a new node containing the given data to this heap. @param newData The data for the new node. @post The heap contains a new node. @return True if the addition is successful, or false if not. */ virtual bool add(const ItemType& newData) = 0; /** Removes the root node from this heap. @return True if the removal is successful, or false if not. */ virtual bool remove() = 0; /** Removes all nodes from this heap. */ virtual void clear() = 0; }; // end HeapInterface #endif

/****************************** ArrayMaxHeap.h ******************************/

#ifndef _ARRAY_MAX_HEAP #define _ARRAY_MAX_HEAP

#include "HeapInterface.h" #include "PrecondViolatedExcep.h"

template class ArrayMaxHeap : public HeapInterface { private: static const int ROOT_INDEX = 0; // Helps with readability static const int DEFAULT_CAPACITY = 5000; // Maximum heap capacity ItemType* items; // Array of heap items int itemCount; // Current count of heap items int maxItems; // Maximum capacity of the heap // --------------------------------------------------------------------- // Most of the private utility methods use an array index as a parameter // and in calculations. This should be safe, even though the array is an // implementation detail, since the methods are private. // --------------------------------------------------------------------- // Returns the array index of the left child (if it exists). int getLeftChildIndex(const int nodeIndex) const; // Returns the array index of the right child (if it exists). int getRightChildIndex(int nodeIndex) const; // Returns the array index of the parent node. int getParentIndex(int nodeIndex) const; // Tests whether this node is a leaf. bool isLeaf(int nodeIndex) const; // Converts a semiheap to a heap. void heapRebuild(int subTreeRootIndex); // Creates a heap from an unordered array. void heapCreate(); public: ArrayMaxHeap(); ArrayMaxHeap(const ItemType someArray[], const int arraySize); virtual ~ArrayMaxHeap(); // HeapInterface Public Methods: bool isEmpty() const; int getNumberOfNodes() const; int getHeight() const; ItemType peekTop() const throw(PrecondViolatedExcep); bool add(const ItemType& newData); bool remove(); void clear(); }; // end ArrayMaxHeap #include "ArrayMaxHeap.cpp" #endif

/****************************** ArrayMaxHeap.cpp ******************************/

#include // for log2 #include "ArrayMaxHeap.h" #include "PrecondViolatedExcep.h"

template int ArrayMaxHeap::getLeftChildIndex(const int nodeIndex) const { return (2 * nodeIndex) + 1; } // end getLeftChildIndex

template int ArrayMaxHeap::getRightChildIndex(const int nodeIndex) const { return (2 * nodeIndex) + 2; } // end getRightChildIndex

template int ArrayMaxHeap::getParentIndex(const int nodeIndex) const { return (nodeIndex - 1) / 2; } // end getParentIndex

template bool ArrayMaxHeap::isLeaf(const int nodeIndex) const { return (getLeftChildIndex(nodeIndex) >= itemCount); } // end isLeaf

template void ArrayMaxHeap::heapRebuild(const int subTreeNodeIndex) { if (!isLeaf(subTreeNodeIndex)) { // Find larger child int leftChildIndex = getLeftChildIndex(subTreeNodeIndex); // A left child must exist int largerChildIndex = leftChildIndex; // Make assumption about larger child int rightChildIndex = getRightChildIndex(subTreeNodeIndex); // A right child might not exist // Check to see whether a right child exists if (rightChildIndex < itemCount) { // A right child exists; check whether it is larger if (items[rightChildIndex] > items[largerChildIndex]) largerChildIndex = rightChildIndex; // Asssumption was wrong } // end if // If root value is smaller that the value in the larger child, swap values if (items[subTreeNodeIndex] < items[largerChildIndex]) { swap(items[largerChildIndex], items[subTreeNodeIndex]); // Continue with the recursion at that child heapRebuild(largerChildIndex); } // end if } // end if } // end heapRebuild

/* // Another version of rebuild, but does not follow book's pseudocode template void ArrayMaxHeap::heapRebuild(const int subTreeNodeIndex) { if (!isLeaf(subTreeNodeIndex)) { // Find larger child int leftChildIndex = getLeftChildIndex(subTreeRootIndex); int rightChildIndex = getRightChildIndex(subTreeRootIndex); int largerChildIndex = rightChildIndex; // Make assumption // Check to see if has rightChild and then check if left is larger if ( (largerChildIndex >= itemCount) || (items[leftChildIndex] > items[rightChildIndex])) { largerChildIndex = leftChildIndex; // Asssumption was wrong } // end if // Swap with larger child if node value is smaller if (items[largerChildIndex] > items[subTreeRootIndex]) { swap(items[largerChildIndex], items[subTreeRootIndex]); // Continue with the recursion at that child heapRebuild(largerChildIndex, items, itemCount); } // end if } // end if } // end heapRebuild */

template void ArrayMaxHeap::heapCreate() { for (int index = itemCount / 2; index >= 0; index--) { heapRebuild(index); } // end for } // end heapCreate

//****************************************************************** // // Public methods start here // //******************************************************************

template ArrayMaxHeap::ArrayMaxHeap(): itemCount(0), maxItems(DEFAULT_CAPACITY) { items = new ItemType[DEFAULT_CAPACITY]; } // end default constructor

template ArrayMaxHeap:: ArrayMaxHeap(const ItemType someArray[], const int arraySize): itemCount(arraySize), maxItems(2 * arraySize) { // Allocate the array items = new ItemType[2 * arraySize]; // Copy given values into the array for (int i = 0; i < itemCount; i++) items[i] = someArray[i]; // Reorganize the array into a heap heapCreate(); } // end constructor

template ArrayMaxHeap::~ArrayMaxHeap() { delete[] items; } // end destructor

template bool ArrayMaxHeap::isEmpty() const { return itemCount == 0; } // end isEmpty

template int ArrayMaxHeap::getHeight() const { return ceil(log2(itemCount + 1)); } // end getHeight

template int ArrayMaxHeap::getNumberOfNodes() const { return itemCount; } // end getNumberOfNodes

template void ArrayMaxHeap::clear() { itemCount = 0; } // end clear

template ItemType ArrayMaxHeap::peekTop() const throw(PrecondViolatedExcep) { if (isEmpty()) throw PrecondViolatedExcep("Attempted peek into an empty heap."); return items[0]; } // end peekTop

template bool ArrayMaxHeap::add(const ItemType& newData) { bool isSuccessful = false; if (itemCount < maxItems) { items[itemCount] = newData;

bool inPlace = false; int newDataIndex = itemCount; while ((newDataIndex > 0) && !inPlace) { int parentIndex = getParentIndex(newDataIndex); if (items[newDataIndex] < items[parentIndex]) { inPlace = true; } else { swap(items[newDataIndex], items[parentIndex]); newDataIndex = parentIndex; } // end if } // end while

itemCount++; isSuccessful = true; } // end if return isSuccessful; } // end add

template bool ArrayMaxHeap::remove() { bool isSuccessful = false; if (!isEmpty()) { items[ROOT_INDEX] = items[itemCount - 1]; itemCount--; heapRebuild(ROOT_INDEX); isSuccessful = true; } // end if return isSuccessful; } // end remove

/****************************** Heap_PriorityQueue.h ******************************/

#ifndef _HEAP_PRIORITY_QUEUE #define _HEAP_PRIORITY_QUEUE

#include "ArrayMaxHeap.h" #include "PriorityQueueInterface.h"

template class Heap_PriorityQueue : public PriorityQueueInterface, private ArrayMaxHeap { public: Heap_PriorityQueue(); bool isEmpty() const; bool add(const ItemType& newEntry); bool remove(); /** @pre The priority queue is not empty. */ ItemType peek() const throw(PrecondViolatedExcep); }; // end Heap_PriorityQueue

#include "Heap_PriorityQueue.cpp" #endif

/****************************** Heap_PriorityQueue.cpp ******************************/

#include "Heap_PriorityQueue.h"

template Heap_PriorityQueue::Heap_PriorityQueue() { ArrayMaxHeap(); } // end constructor

template bool Heap_PriorityQueue::isEmpty() const { return ArrayMaxHeap::isEmpty(); } // end isEmpty

template bool Heap_PriorityQueue::add(const ItemType& newEntry) { return ArrayMaxHeap::add(newEntry); } // end add

template bool Heap_PriorityQueue::remove() { return ArrayMaxHeap::remove(); } // end remove

template ItemType Heap_PriorityQueue::peek() const throw(PrecondViolatedExcep) { try { return ArrayMaxHeap::peekTop(); } catch (PrecondViolatedExcep e) { throw PrecondViolatedExcep("Attempted peek into an empty priority queue."); } // end try/catch } // end peek

/****************************** PrecondViolatedExcep.h ******************************/

#ifndef _PRECOND_VIOLATED_EXCEPT #define _PRECOND_VIOLATED_EXCEPT

#include #include

using namespace std;

class PrecondViolatedExcep : public logic_error { public: PrecondViolatedExcep(const string& message = ""); }; // end PrecondViolatedExcep #endif

/****************************** PrecondViolatedExcep.cpp ******************************/

#include "PrecondViolatedExcep.h"

PrecondViolatedExcep::PrecondViolatedExcep(const string& message): logic_error("Precondition Violated Exception: " + message) { } // end constructor

// End of implementation file.

/****************************** Passenger.h ******************************/

#ifndef PASSENGER_H

#define PASSENGER_H

#include

using namespace std;

class Passenger

{

private:

int key; //The priority value for the PriorityQueue

string name; //The passenger's last name

char type; //The type of passenger

int row; //Where the passengers are seated

bool priority;

public:

/**

* Default constructor

*/

Passenger();

/**

* Constructor is passed line from file, parses line and initializes data fields

*/

Passenger(string line, bool genSort);

//Gets the key

int getKey(void);

//Gets the last name

string getName(void);

//Gets the type

char getType(void);

//Gets the row

int getRow(void);

//Sets the key

void setKey(int k);

//Sets the last name

void setName(string n);

//Sets the type

void setType(char t);

//Sets the row

void setRow(int r);

/**

* Defines the > operator for a Passenger object.

*/

bool operator> (const Passenger &right);

/**

* Defines the < operator for a Pasenger object.

*/

bool operator< (const Passenger &right);

/**

* Defines the == operator for a Passenger object.

*/

bool operator== (const Passenger &right);

}; //end Passenger

#endif

/****************************** Passenger.cpp ******************************/

#include "Passenger.h"

#include

#include

#include

using namespace std;

/**

* Default Constructor

*/

Passenger::Passenger()

{

}

/**

* Constructor is passed line from file, parses line and initializes data fields

*/

Passenger::Passenger(string line, bool genSort)

{

stringstream ss(line);

//Assign variables from the line

ss >> name;

ss >> type;

ss >> row;

key = 1; //Default lowest key value

//Test for priority boarding, assign keys accordingly

if(type == 'H') //Test for child or passengers who need help

{

priority = true;

key = 7;

}

else if(row <= 4) //Test for 1st class

{

priority = true;

key = 6;

}

else if(row == 10 || row == 11 || type == 'E') //Test for frequent flyers

{

priority = true;

key = 5;

}

else

{

priority = false; //Others are general boarding

}

//Parameter flag indicates if non-priority get sorted

if(genSort && !priority) //If sorting by row

{

if(row <= 26 && row >= 23)

{

key = 4; //rows 23-26 board first in general boarding

}

else if(row <= 22 && row >= 17)

{

key = 3; //rows 17-22 board second in general boarding

}

else if(row <= 16 && row >= 12)

{

key = 2; //rows 12-16 board third in general boarding

}

else if(row <= 9 && row >= 5) //rows 10-11 are exit rows and we're already filled

{

key = 1; //rows 5-9 board last in general boarding

}

}

}//end constructor

//Used to access private data fields

int Passenger::getKey(void)

{

return key; //getKey

}

string Passenger::getName(void)

{

return name; //getLastName

}

char Passenger::getType(void)

{

return type; //getType

}

int Passenger::getRow(void)

{

return row; //getRow

}

//Used to set private data fields

void Passenger::setKey(int k)

{

key = k; //setKey

}

void Passenger::setName(string n)

{

name = n; //setLastName

}

void Passenger::setType(char t)

{

type = t; //setType

}

void Passenger::setRow(int r)

{

row = r; //setRow

}

bool Passenger::operator> (const Passenger &right)

{

return (key > right.key);

}

bool Passenger::operator< (const Passenger &right)

{

return (key < right.key);

}

bool Passenger::operator== (const Passenger &right)

{

return (key == right.key);

}

/****************************** Airworthy.h ******************************/

#ifndef AIRWORTHY_H

#define AIRWORTHY_H

#include "Heap_PriorityQueue.h"

#include "Passenger.h"

#include

using namespace std;

class Airworthy

{

private:

//Queue where priority is set using Airworthy's previous boarding procedure

Heap_PriorityQueue previous;

//Queue where priority is set using Airworthy's new random boarding procedure

Heap_PriorityQueue random;

//The amount of time, in seconds, required to board a plane using Airworthy's previous boarding procedure

int boardTime;

//Reads data from input file, loads queues, writes contents of queues to output file

void loadHeaps (const string& file, const string& outputName);

//Empties queue, writes data to output file, and increments boardTime based on the last item's position

void boarding(Heap_PriorityQueue& queue, const string& outputName);

//Calculates total minutes from seconds, casts to double

double displayTime(void);

public:

/**

* Default Constructor

*/

Airworthy();

/**

* Constructor accepts names of input and output files

*/

Airworthy(const string& fileName, const string& outputName);

/**

* Opens output file and writes simulation results of both queues to it

*/

void simulateBoarding(const string& outputName);

}; //end Airworthy

#endif

/****************************** Airworthy.cpp ******************************/

#include "Airworthy.h" #include #include #include #include

using namespace std;

/** * Default Constructor */ Airworthy::Airworthy() { }

/** * Constructor accpets names of input and output files */ Airworthy::Airworthy(const string& fileName, const string& outputName) { loadHeaps(fileName, outputName); // populates heaps with data from file }

/** * LoadHeaps() *Reads data from input file, loads queues, writes contents of queues to output file */ void Airworthy::loadHeaps (const string& file, const string& outputName) {

string passLine; // input string from file ifstream inFile(file); // declare and open the input file ofstream outFile(outputName); // declare and open the output file

if (!inFile) { // check for input cout << "Error opening file for input: " << file << endl << "Heap Queues not populated" << endl;// error message }// end if else if (!outFile) { // check for output cout << "Error opening file for output: " << file << endl << "Input not saved" << endl; // error message }// end else if else { // with both files open outFile << "Original List in the file:" << endl << "Name Type Row" << endl << "---------------------" << endl; while (!inFile.eof()) { getline (inFile, passLine); // get input string if (!passLine.empty()) { // ignore empty lines Passenger p(passLine, true); // new passenger, with general sorting Passenger q(passLine, false); // new passenger, only priority sorting previous.add(p); // add full sort to previous random.add(q); // add unsorted to random // write data fields to file outFile << left << setw(13)<< p.getName() << p.getType() << right << setw(4)<< p.getRow() << endl; }// end if }// end while inFile.close(); // close both files outFile.close(); }//end else }//end LoadHeaps()

/** * SimulateBoarding() * Opens output file and writes simulation results of both queues to it */ void Airworthy::simulateBoarding(const string& outputName) {

ofstream outFile(outputName, ios_base::app); // reopen output file for writing

if (!outFile) { // check for output cout << "Error opening file for output: " << outputName << endl << "Simulation not saved" << endl; // error message }// end if else { // if output successful outFile << endl<< "Boarding in Previous Procedure ..." << endl << "Last Name Type Row Key" // print data headers << endl << "--------------------------" << endl; boarding(previous, outputName); // simulate with ordered general boarding outFile << "Boarding in Random Procedure ..." << endl << "Last Name Type Row Key" // print data headers << endl << "--------------------------" << endl; boarding(random, outputName); // simulate with random general boarding } // end else outFile.close(); // close output file }//end simulateBoarding()

/** * Boarding()- * Empties queue, writes data to output file, and increments boardTime based on the last item's position */ void Airworthy::boarding(Heap_PriorityQueue& queue, const string& outputName) {

ofstream outFile(outputName, ios_base::app); // reopen output file

if (!outFile) { // check for output cout << "Error opening file for output: " << outputName << endl << "Simulation not saved" << endl; // error message }// end if else { // if output successful outFile << fixed << setprecision(2); // format doubles boardTime = 0; // reset counter, priority boarding always happens first int prevRow = 27; // tracks if passenger will be blocked, set out of row range while (!queue.isEmpty()) { Passenger p = queue.peek(); // retrieve passenger int boardRow = p.getRow(); // get passenges's row if (prevRow <= boardRow) { // if blocked, time +25sec boardTime += 25; }// if else { // if not blocked time +1sec boardTime++; }// else prevRow = boardRow; // this passenger blocks next passenger // ordered output written to file outFile << left << setw(14)<< p.getName() << p.getType() << right << setw(5)<< p.getRow() << setw(3) << p.getKey() << endl; queue.remove(); // dequeue }//while // display total time in minutes outFile << "Total boarding time: " << displayTime() << " minutes." << endl << endl; }// end else outFile.close(); // close output file }

/** * DisplayTime()------------------------------------------- * Calculates total minutes from seconds, casts to double */ double Airworthy::displayTime(void) { double minutes = double (boardTime) /60; return minutes; }

/****************************** Simulationproject.cpp (main program) ******************************/

#include "Airworthy.h" #include #include

using namespace std;

void description(void) { cout << "This program will collect passenger information from a series of data files and" << endl << "simulate those passengers boarding a plane." << endl << endl; }

int main (void) {

description(); // Describe the program to the user

int numTests = 3; // variable for loop, = to number of files to read and create

//open and close all the input and output files string inFiles[numTests] = {"airworthy70.txt","airworthy85.txt","airworthy100.txt"}; // input file names string outFiles[numTests] = {"results70.txt","results85.txt","results100.txt"}; // input file names

for (int i = 0; i < numTests; i++){ // repeat for all files cout << "Simulating boarding from " << inFiles[i] << "." << endl; Airworthy test(inFiles[i], outFiles[i]); // load queues, creat outputs test.simulateBoarding(outFiles[i]); // run simulations, add to outputs }// for

return EXIT_SUCCESS; }

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

Database Processing Fundamentals Design And Implementation

Authors: KROENKE DAVID M.

1st Edition

8120322258, 978-8120322257

More Books

Students also viewed these Databases questions