#include "SortedList.h" #include using namespace std; // An example of testing procedure. // A different procedure will be used for testing. int main() { SortedList L; for (int i=5; i>0; i--) { L.add(1,i); L.add(L.size()/2,i); } for (int i=1; i<=L.size(); i++) cout <