C++ PROGRAMMING
In the linked-list based bag implementation, we demonstrated the
functionalities, such as, add, remove, and list. This assignment is
to extend the functionalities of the bag with other operations
average, min, and max, You need to extend the Bag class (under Wk
2, BagLinked_List.cpp) with the following methods:
-int Bag::min( ), is to find minimum of items of the bag.
-int Bag::max( ), is to find maximum of items of the bag
-float Bag::ave( ), is to find...