Question
Write a C++ class (or a set of classes) that implements a stack using a linked list. The type of data contained in the stack
Write a C++ class (or a set of classes) that implements a stack using a linked list. The type of data contained in the stack should be double. The maximum size of the stack is 30. Implement at least the following methods:
.
Constructor and destructor; // 5 pts void push (double value); // pushes an element with the value into the stack. 5 pts.
double pop (); // pops an element from the stack and returns its value. 5 pts.
int isEmpty(); // returns 1 if the stack is empty, 0 otherwise. 5 pts.
int numOfElements(); // returns the number of elements in the stack. 5 pts.
void printElements(); // print out the current stack to the console. 5 pts.
A main function; // execute each method of your stack (except the destructor) at least once without asking input from the users.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started