Get in touch with us
Send us an e-mail
Question
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. Now consider which can contain duplicate items. Thus a Set is a Bag but not vice versa in general. Design a polymorphic class hierarchy for Sets and Bags. The header file for the Set class in this hierarchy must be given in Set.h and the header file for Bag class must be given in Bag.h. Provide the implementation files Set.cpp and Bag.cpp.. The following are some examples of Bag intersection (), and Bag union ().∩∪
{1,2,2,2,3,3}{1,1,2,2,3} = {1,2,2,3} ∩
{1,2,2,2,3,3}{1,1,2,2,3} = {1,1,2,2,2,3,3}∪
You must clearly identify which member functions must be virtual
Summary
The question belongs to Computer Science and it discusses about designing a polymorphic class hierarchy for sets and bags.
Total Word Count NA
I was initially astonished to find out that this website has a specialized section for pediatric nurses. The experts here are wonderful and helped me out with various theoretical childcare nursing intervention strategies with logic, reason and strong scholarly references. Really did well in my course due to HwA.
I was struggling with the deadlines of my assignments and increasingly felt at a loss with my Asian Legal Studies assignments. 24 hours in a day were not enough to do the research and structure the assignment essay. At TheReliableTutor the tutors understand my deadlines and I have never had them delay.
I really needed some brush-up regarding my concepts of lung cancer patient care and when I came across HwA I was surprised to see that they have a specialized segment of nursing experts for oncology. I got help with my assignment and also got benefitted from the guidelines provided by the oncology assignment experts.
The precise and brief annotated bibliography submitted by the writing expert at HwA for my World Religion thesis paper was just what my professor had asked for. There was no problem in communication between the writing expert and me and the research work done was absolutely spot on.
After completing my graduation in accountancy I decided to pursue a course in taxation. However, my boat started to rock as an when I was faced with the complexity of the assumptions and considerations which needs to be made whilst calculating a business tax. I was clueless and I was looking for means to make things steady. It was then that my senior in the university suggested that I should take help from HwA and I did. The result was magnificent and while reading out their reports and calculations in my own free time, I also learned a lot.
Comments
this is a very good website
I have 50 questions for the same test your page is showing only 28
hi can you please help or guide me to answer my assignments. thanks
hi can anyone help or guide me to my assignments. thanks
This solution is perfect ...thanks
Hello Allison,I love the 2nd image that you did! I also, had never heard of SumoPaint, is something that I will have to exolpre a bit! I understand completely the 52 (or so) youtube videos that you probably watched. Sometimes they have what you want, sometimes they don't! However, it is always satisfying when you are able to produce something that you have taught yourself. Great job!Debra 0 likes
Perfect bank of solution.
great !
thanks for the quick response. the solution looks good. :)
thnx for the answer. it was perfect. just the way i wanted it.
works fine.