COMP2521 23T2 Assignment 1
// Main program for testing the multiset ADT // COMP2521 23T2 Assignment 1 #include #include #include #include #include “Mset.h” // These functions are deliberately not static to make testing more // convenient. void testMsetInsert(void); void testMsetInsertMany(void); void testMsetSize(void); void testMsetTotalCount(void); void testMsetGetCount(void); void testMsetShow(void); void testMsetUnion(void); void testMsetIntersection(void); void testMsetSum(void); void testMsetDifference(void); void testMsetIncluded(void); void […]
COMP2521 23T2 Assignment 1 Read More »