Class template for the class set given

Assignment Help Basic Computer Science
Reference no: EM13829597

Problem:

Implement the following Set class. A set is a collection of items with no duplicates. The following class implements a set of integers.

#ifndef SET_H 
#define SET_H 
#include <iostream> 
#include <vector> 
using namespace std; 
class Set 

// friend operator functions 
friend ostream &operator<<(ostream & out, const Set & s); 
friend istream &operator>>(istream & in, Set & s); 
public: 
// Constructors 
Set(); // default constructor 
Set(const Set & s); // copy constructor 
// destructor 
~Set(); 
// operator functions 
Set operator||(Set & s); // union of the set with the set s 
Set operator&&(Set & s); // intersection of the set with the set s 
const Set& operator=(const Set & s); // assignment 
bool operator==(const Set & s); // equality 
int& operator[](int index); // returns modifiable lvalue 
int operator[](int index) const; // returns rvalue 
// Set membership functions 
bool member(int m); // The integer m is a member 
void add(int m); // add the integer m to the set 
void remove(int m); // remove the integer m from the set 
private: 
vector<int> _s; 
}; 
#endif

The member functions must be written in a file Set.cpp. Provide a corresponding class template for the class Set. All of your code must be given in the file SetTemplate.h. Provide a driver program for your class template.

Additional Information:

This question is from Computer Science and it explains about providing the class template for the class set given.

Reference no: EM13829597

Questions Cloud

What means do you use to develop supporting ideas : Is there a time of day when you're more effective? Do you prefer working in isolation or in the company of others? Are you more productive composing at a keyboard or with pen and paper?
Net present value calculation-internal rate of return : (Net present value calculation) Big Steve’s, makers of swizzle sticks, is considering the purchase of a new plastic stamping machine. This investment requires an initial outlay of $100,000 and will generate net cash inflows of $18,000 per year for 10..
Statement review the unquestionable property of the labourer : Statement Review the unquestionable property of the labourer
Differences between cash flow and accounting income : Discuss differences between cash flow and accounting income and why it is important to use cash flow in making capital budgeting decisions. How do companies generate ideas for capital projects? Give some examples of capital projects that companies in..
Class template for the class set given : Implement the following Set class. A set is a collection of items with no duplicates. The following class implements a set of integers.
Describe a scenario where technology is to monitor people : Describe a scenario where technology is used to monitor people at work places and in public places. Various views of Utilitarianism, Deontology, Virtue and Social Contract views of ethics have been discussed.
Calculate basic descriptive statistics : Calculate basic descriptive statistics - Calculate the sum, mean, mode, median, standard deviation, range, skew, and kurtosis for each group.
Bonds make annual payments-what is the current bond price : Bey Co. issued 20-year, $1,000 bonds at a coupon rate of 7 percent. The bonds make annual payments. If the YTM on these bonds is 5 percent, what is the current bond price?
Discuss the importance of securing advance directives : As a health administrator, discuss the importance of securing advance directives at the time of inpatient registration or emergency care. As a health administrator, discuss how advance directives would have facilitated care in the Quinlan and Shiavo ..

Reviews

Write a Review

Basic Computer Science Questions & Answers

  What is the output of the following oddstuff method

What is the output of the following oddStuff method?

  Ompare the given letters with acceptable words

compare the given letters with acceptable words, where each word in the txt file is separated by a space. Please use list comprehensions and arrays when possible (split function?)

  What is the name of the keyboard

research the Internet and find out all that you can about the keyboard layout that you are using. Then write me a one page essay on what you found.

  Create a four-function fraction calculator

Create a four-function fraction calculator. Here are the formulas for the four arithmetic operations applied to fractions.

  Suppose fred sees your rsa signature on m1 and m2

Suppose Fred sees your RSA signature on m1 and m2

  Led paybyphone to switch to an ip-based network

What are the reasons that led PayByPhone to switch to an IP-based network?

  Develop a classical probability of occurence

Cite a risk in computing for which it is impossible or infeasible to develop a classical probability of occurence. Why?

  How do you find all the points on an elliptic curve

How do you find all the points on an elliptic curve? y^2 = x^3-2 (mod7)

  Write a program that allows the user to enter any number of

Completed using C#. 1. Write a program that allows the user to enter any number of integer values continuously (in any order) until the user enters 999. Display the sum of the values entered, not including 999. Save the file as Sum.cs. 2. Three sales..

  Role of systems analysis in success of firms today

What role does systems analysis play in success of firms today? Why? Where would you "place" analysis function to maximize its effectiveness? Support recommendations.

  Use java 5 to create a generic class drawingbox with a type

Use Java 5 to create a generic class DrawingBox with a type parameter that simulates drawing an item at random out of a box. This class could be used for simulating a random drawing.

  Two cyborgs walk into your home

Two cyborgs walk into your home, both claiming to be oracles for the graph 3-colorability decision problem. They both always give a yes/no answer in constant time for any instance, and are each self-consistent

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