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

  Convert the result and store it into dval

Given a double variable called dval, write a single Java statement to prompt the user to enter the price of an item using JOptionPanes, convert the result and store it into dval.

  Accept one input.

Write a function called "problem3" that accept ONE input. This single input will be formatted as follows: Row 1: X coordinates Row 2: Y coordinates Your function should then shift the shape

  Utilize the lirn library

Write a 2 page research paper (excluding the title page) on logical, circular, and arithmetic shift operations. Use an example not discussed in the textbook to explain these shift operations.

  Choose one of special walks: euler circuit

Choose one of special walks: Euler circuit, Hamiltonian cycles, or shortest path tree. Provide an example of how the walk can be used to identify an issue on a network or to solve a routing problem.

  The built in python string functions

letterCount(letter, myString) This function should take a single letter, and then a string. It should return the number of times letter occurs in myString. So the call letterCount('h', 'hello') should return 1, and the call letterCount('a', 'aa..

  Human and nature dynamics (handy) model

This paper is centered around some results obtained from the Human and Nature Dynamics (HANDY) model. This model is equation 3 in their paper.

  How many block of main memory is needed-direct mapped cache

Suppose a computer using direct mapped cache has 2^32 words of main memory and a cache of 1024 blocks, where each cache block contains 32 words. How many block of main memory are there?

  Write the function xsort which takes in a list of strings

Write the function Xsort wich takes in a list of strings and returns sorted list with all words beginning wih "X" first in the list. f.ex: xsort (['kex', 'xylofonn', 'epli', 'xenos', 'asni']) returns ['xenos', 'xylofonn', 'asni', 'epli', 'kex'] th..

  Reverse the string

Reverse the string. If the reversed string is the same (.equals()) as the original, pared down, string then it is a palindrome.Way 2: Look at the first and last letter and see if they are the same (using the charAt() method), then the second letter ..

  What are the risks associated with throwing out old info

1. What are the risks associated with throwing out old information systems and replacing them with new information systems? Provide examples to support your answer.

  Define a class to represent time

Define a class to represent time, in military format. Your class should have three private data members.

  In mips assembly language

In MIPS Assembly language

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