Create a class named safestack

Assignment Help Basic Computer Science
Reference no: EM13708280

Assignment:Create a class named SafeStack that implements a stack of strings. Use an instance of stack from <string> to hold string values and implement the same interface as the data type. However, your implementation (class) should throw an exception if an attempt is made to remove a value from an empty stack.
 

#include <stack>
#include <string>
#include <iostream>
#include <stdexcept>
using namespace std;
class FutureValueError
{
public:
    FutureValueError(const string& r);
    string& what();
private:
    string reason;
    
    };
    
    FutureValueError::FutureValueError(const string& r): reason(r) { }
   string& what()
   {
       return reason;
   }
class SafeStack
{
    
public:
   SafeStack();
   void push(string str);
   string top();
   void pop();
   int size();
   bool empty();  

private:
   stack<string> stk;
};

SafeStack::SafeStack()
{}

void SafeStack::push(string str)
{
   stk.push(str);
}

string SafeStack::top()
{
   if(stk.empty())
       throw  FutureValueError ("stack is empty!");
   else
       return stk.top();
}

void SafeStack::pop()
{
   if(stk.empty())
       throw  FutureValueError ("stack is empty!");
   else
       stk.pop();
}

int SafeStack::size()
{
   return stk.size();
}

bool SafeStack::empty()
{
   return stk.empty();
}

int main ()

{
     SafeStack mystack;
     try
            
     {
      mystack.pop();   
     }
     catch (FutureValueError& e)
     {
         cout << "Caught exception: " << e.what() << "n";
         
     }
    
    return 0;
}

Reference no: EM13708280

Questions Cloud

What new threats do computer systems and networks pose : What new threats do computer systems and networks pose to personal privacy? Conversely, what threats are enabled or enhanced by computer systems and networks? How does cryptography help or hinder protection of privacy and public safety? What po..
Write the query to display the employee number : Write the query to display the employee number,last name,first name,salary "from" date,salary end date, and salary amount for employees 83731,83745 , and 84039.Sort the output by employee number and salary "from"date
Develop the flow diagram of the information : Develop the flow diagram of the information and any control elements needed to ensure proper access for the information.  Submit a 700- to 1,050-word section of the paper with the following elements:  A diagram of the information flow and any element..
How many streetlights are socially optimal : What is likely to happen to the overall level of neighborhood beautification and how many streetlights are socially optimal - Explain the trade-offs involved in this decision.
Create a class named safestack : Assignment:Create a class named SafeStack that implements a stack of strings. Use an instance of stack from to hold string values and implement the same interface as the data type. However, your implementation (class) should throw an exceptio..
How many grams of copper nitrate would be produced : How many grams of copper (lll) nitrate would be produced from 4.30 g of copper metal reacting with excess nitric acid
An increase in the amount of h2o : In the following equilibrium, would you raise or lower the temperature to obtain these results? C2H2(g) + H2O(g) CH3CHO(g) delta H degrees= -151 kJ a. An increase in the amount of CH3CHO b. A decrease in the amount of C2H2 c. An incre..
Is effective leadership behavior universal : Is effective leadership behavior universal or does it vary from culture to culture? Please explain in some detail.
Reaction between aqueous mercury ion and complexing agent : Consider the following reaction between aqueous mercury ions and a complexing agent "RWW" also known as a chelating agent.Hg^2+ (aq) + 2RWW (aq) Hg(RWW)2^2+ (aq) Kf=7.91E10

Reviews

Write a Review

Basic Computer Science Questions & Answers

  Identifies the cost of computer

identifies the cost of computer components to configure a computer system (including all peripheral devices where needed) for use in one of the following four situations:

  Input devices

Compare how the gestures data is generated and represented for interpretation in each of the following input devices. In your comparison, consider the data formats (radio waves, electrical signal, sound, etc.), device drivers, operating systems suppo..

  Cores on computer systems

Assignment : Cores on Computer Systems:  Differentiate between multiprocessor systems and many-core systems in terms of power efficiency, cost benefit analysis, instructions processing efficiency, and packaging form factors.

  Prepare an annual budget in an excel spreadsheet

Prepare working solutions in Excel that will manage the annual budget

  Write a research paper in relation to a software design

Research paper in relation to a Software Design related topic

  Describe the forest, domain, ou, and trust configuration

Describe the forest, domain, OU, and trust configuration for Bluesky. Include a chart or diagram of the current configuration. Currently Bluesky has a single domain and default OU structure.

  Construct a truth table for the boolean expression

Construct a truth table for the Boolean expressions ABC + A'B'C' ABC + AB'C' + A'B'C' A(BC' + B'C)

  Evaluate the cost of materials

Evaluate the cost of materials

  The marie simulator

Depending on how comfortable you are with using the MARIE simulator after reading

  What is the main advantage of using master pages

What is the main advantage of using master pages. Explain the purpose and advantage of using styles.

  Describe the three fundamental models of distributed systems

Explain the two approaches to packet delivery by the network layer in Distributed Systems. Describe the three fundamental models of Distributed Systems

  Distinguish between caching and buffering

Distinguish between caching and buffering The failure model defines the ways in which failure may occur in order to provide an understanding of the effects of failure. Give one type of failure with a brief description of the failure

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd