C++ Create a data structure that keeps track of templated data types in a sorted array. Objects should be sortable by containing at least one sortable property (e.g. item for sale { price, size }, books { author, title, genre }, etc.) and implementing the less than “<” and equals “==” operator overloads
C++ Create a data structure that keeps track of templated data types in a sorted array. Objects should be sortable by containing at least…