This program illustrates the reverse() and sort() member functions for list objects. Press Enter to continue ... For the starting list we have: Size = 10 Contents: 17 12 14 19 23 15 61 20 81 11 Press Enter to continue ... Now we sort the list in ascending order: Size = 10 Contents: 11 12 14 15 17 19 20 23 61 81 Press Enter to continue ... Next we reverse the list, which will give the values in descending order: Size = 10 Contents: 81 61 23 20 19 17 15 14 12 11 Press Enter to continue ... Finally we sort the list according to the criterion that one value comes before another if and only if it has a smaller digit sum: Size = 10 Contents: 20 11 12 23 14 15 61 17 81 19 Press Enter to continue ...