Question: I need to convert the header file which is the code (stack as array ) to single linked list (( I need to implement the
I need to convert the header file which is the code (stack as array) to single linked list (( I need to implement the same class, but this time implement the stack as a single linked list. The test of the class should be done with the same main function as in the example. Please do not change the main function to avoid loosing points.))
///Header file: myStack.h
#ifndef H_StackType #define H_StackType
#include
///#include "stackADT.h"
using namespace std;
template
void initializeStack(); ///Function to initialize the stack to an empty state. ///Postcondition: stackTop = 0
bool isEmptyStack() const; ///Function to determine whether the stack is empty. ///Postcondition: Returns true if the stack is empty, /// otherwise returns false.
bool isFullStack() const; ///Function to determine whether the stack is full. ///Postcondition: Returns true if the stack is full, /// otherwise returns false.
void push(const Type& newItem); ///Function to add newItem to the stack. ///Precondition: The stack exists and is not full. ///Postcondition: The stack is changed and newItem /// is added to the top of the stack.
Type top() const; ///Function to return the top element of the stack. ///Precondition: The stack exists and is not empty. ///Postcondition: If the stack is empty, the program /// terminates; otherwise, the top element /// of the stack is returned.
void pop(); ///Function to remove the top element of the stack. ///Precondition: The stack exists and is not empty. ///Postcondition: The stack is changed and the top /// element is removed from the stack.
stackType(int stackSize = 100); ///constructor ///Create an array of the size stackSize to hold ///the stack elements. The default stack size is 100. ///Postcondition: The variable list contains the base /// address of the array, stackTop = 0, and /// maxStackSize = stackSize.
stackType(const stackType
~stackType(); ///destructor ///Remove all the elements from the stack. ///Postcondition: The array (list) holding the stack /// elements is deleted.
private: int maxStackSize; ///variable to store the maximum stack size int stackTop; ///variable to point to the top of the stack Type *list; ///pointer to the array that holds the ///stack elements
void copyStack(const stackType
template
template
template
template
template
template
template
maxStackSize = 100; } else maxStackSize = stackSize; ///set the stack size to ///the value specified by ///the parameter stackSize
stackTop = 0; ///set stackTop to 0 list = new Type[maxStackSize]; ///create the array to ///hold the stack elements }///end constructor
template
template
list = new Type[maxStackSize];
///copy otherStack into this stack for (int j = 0; j < stackTop; j++) list[j] = otherStack.list[j]; } ///end copyStack
template
copyStack(otherStack); }///end copy constructor
template
return *this; } ///end operator=
#endif
//********************************************************* /// main cpp
#include
#include "myStack.h"
using namespace std;
int main() { ///Step 1 double GPA; double highestGPA; string name;
stackType
ifstream infile;
infile.open("HighestGPAData.txt"); //Step 2
if (!infile) //Step 3 { cout << "The input file does not " << "exist. Program terminates!" << endl; return 1; }
cout << fixed << showpoint; //Step 4 cout << setprecision(2); //Step 4
infile >> GPA >> name; //Step 5
highestGPA = GPA; //Step 6
while (infile) //Step 7 { if (GPA > highestGPA) //Step 7.1 { stack.initializeStack(); //Step 7.1.1
if (!stack.isFullStack()) //Step 7.1.2 stack.push(name);
highestGPA = GPA; //Step 7.1.3 } else if (GPA == highestGPA) //Step 7.2 if (!stack.isFullStack()) stack.push(name); else { cout << "Stack overflows. " << "Program terminates!" << endl; return 1; //exit program } infile >> GPA >> name; //Step 7.3 }
cout << "Highest GPA = " << highestGPA << endl; //Step 8 cout << "The students holding the " << "highest GPA are:" << endl;
while (!stack.isEmptyStack()) //Step 9 { cout << stack.top() << endl; stack.pop(); }
cout << endl;
return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
