C++ Data Structure
CSC 240
Lab 2
Implement a Print function for the linked list version of the class UnsortedType.
Implement the ComparedTo function for the StudentType class.
Test these two implementation with the provided driver StudentTypeDriver.cpp and verify the following
output:
Compare student1 to student1: 1 Compare student1 to student2: 0 Print list 0: Name: Jim Status: 2 Name: Ivan Status: 1 Print list 1: Name: Jim Status: 2 Print list 2: Name: Billy Status: 0 Name: Jim Status: 2 Print list 3: Empty.
The following files will be provided:
unsorted.h, unsorted.cpp, StudentType.h, StudentType.cpp, PersonType.h, PersonType.cpp,
DateType.h, DateType.cpp