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

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
Get step-by-step solutions from verified subject matter experts
