Question: Hello, i really need help to implement this functions on C++, thankyou. With the following class Set, wich represent a set of n real elements,

Hello, i really need help to implement this functions on C++, thankyou.

With the following class Set, wich represent a set of n real elements, implement the following member functions

Hello, i really need help to implement this functions on C++, thankyou.

class set{ private: float *set; int card; public: Set(int); bool insertElement(float); bool deleteElement(float); bool setUnnion(Set& op2, Set& result); bool setIntersection(Set& op2, Set& result); bool setDifference(Set& op2, Set& result); void printO; 15 16 18 20 21 ! 24 25 int main(){

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!