// CS2310 Exercise 8 // // Name ____________________ SSN ____________________ // // Chapter 13 // p761 - 6: The SortedList::Insert function inserts items // into the list in ascending order. Rewrite it so that it // inserts items in descending order. // // SPECIFICATION FILE ARRAY-BASED LIST ( sortedlist.cpp ) #include #include "sortedlist.h" using namespace std; void SortedList::Print() { int i; for (i=0; i