Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The set class is used to represent sets of integers. It supports most of the standard set operations. class Set { public: //default constructor Set();

The set class is used to represent sets of integers. It supports most of the standard set operations.

class Set {

public:

//default constructor

Set();

//add element to set

void addElement (int element);

//remove element from set

void removeElement(int element);

//check for membership

bool isMember(int element);

//set union, modifies curremtn set

void Union (Set s);

//set difference modifiers current set

void diffeence (Set s);

//size of set

int size();

//get element i

int getElement (int i);

private:

//binary search for element, returns index

bool search(int element, int& index);

//set members

int elements[maxElements];

//next empty position in elements

int next;

};

void printSet(Set s);

void generateSample(int sample[], int n);

void run(int sample[], int n);

Overload the following operators the class Set:

bool opertor ==(const Set& s); //equality comparison

bool oprator !=(const Set& s); //inequality comparion

Set& operator + (int element); //add element operator

Set& operator + (const Set& s); // set union opreator

Set& operator - _int element); //remove element operator

Set& operator - (const Set& s); //aset difference operator

****************************************************************************************

Set data structure:

1. A set is a collection of objects need not to be in any particular order. Elements

* should not be repeated.

2. UNION: Combine two or more sets (here two sets)

3. INTERSECTION: Gathering common elements in both the sets together as a single set

4. DIFFERENCE: Forming a set with elements which are in first set and not in second

set

A-B= {x| for all x belongs to A but not in B}

***************************************************************************************

int main()

{

clock_t before;

clock_t after;

double result;

int i;

int n;

int sample[MaxElements];

cout << "Enter size of set: ";

cin >> n;

if (n >= MaxElements)

{

cout << "set size must be less than " << MaxElements << " ";

exit(1);

}

generateSample(sample, n);

before = clock();

for(i=0; i<100; i++)

{

run(sample, n);

}

after = clock();

result = static_cast(after - before)/CLOCKS_PER_SEC;

result = static_cast(after - before)/CLOCKS_PER_SEC;

cout << before << " " << after << " ";

cout << result << " ";

~ ~ ~ ~ ~ ~

return 0;

}

generateSample: Generate a set of value of a certain size. Produce an array that is used to initialize the sets in our experiment.

void generteSample (int sample[], int n)

{

int i;

int r;

Set s;

i=0;

while (i < n)

{

r = rand() %10000;

if(!s.isMember(r))

{

sample[i] = r;

i++;

}

}

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

MongoDB Applied Design Patterns Practical Use Cases With The Leading NoSQL Database

Authors: Rick Copeland

1st Edition

1449340040, 978-1449340049

More Books

Students also viewed these Databases questions