Code:
#include iostream
#include list
#include cstdlib
using namespace std;
int main()
{
int choice, item;
list
list
while (1)
{
cout<<"\n---------------------"<
cout<<"Sorting Containers Implementation in Stl"<
cout<<"\n---------------------"<
cout<<"1.Insert Element into the List"<
cout<<"2.Display Sorted Elements"<
cout<<"3.Exit"<
cout<<"Enter your Choice: ";
cin>>choice;
switch(choice)
{
case 1:
cout<<"Enter the element to be inserted: ";
cin>>item;
lt.push_back(item);
break;
case 2:
lt.sort();
cout<<"Elements of Sorted List: ";
for (it = lt.begin(); it != lt.end(); ++it)
cout <<" "<< *it;
cout << endl;
break;
case 3:
exit(1);
break;
default:
cout<<"Wrong Choice"<
}
}
return 0;
}
Output:
---------------------
Sorting Containers Implementation in Stl
---------------------
1.Insert Element into the List
2.Display Sorted Elements
8.Exit
Enter your Choice: 1
Enter the element to be inserted: 9
---------------------
Sorting Containers Implementation in Stl
---------------------
1.Insert Element into the List
2.Display Sorted Elements
8.Exit
Enter your Choice: 1
Enter the element to be inserted: 3
---------------------
Sorting Containers Implementation in Stl
---------------------
1.Insert Element into the List
2.Display Sorted Elements
8.Exit
Enter your Choice: 1
Enter the element to be inserted: 5
---------------------
Sorting Containers Implementation in Stl
---------------------
1.Insert Element into the List
2.Display Sorted Elements
8.Exit
Enter your Choice: 1
Enter the element to be inserted: 6
---------------------
Sorting Containers Implementation in Stl
---------------------
1.Insert Element into the List
2.Display Sorted Elements
8.Exit
Enter your Choice: 1
Enter the element to be inserted: 2
---------------------
Sorting Containers Implementation in Stl
---------------------
1.Insert Element into the List
2.Display Sorted Elements
8.Exit
Enter your Choice: 1
Enter the element to be inserted: 5
---------------------
Sorting Containers Implementation in Stl
---------------------
1.Insert Element into the List
2.Display Sorted Elements
8.Exit
Enter your Choice: 2
Elements of Sorted List: 2 3 5 5 6 9
---------------------
Sorting Containers Implementation in Stl
---------------------
1.Insert Element into the List
2.Display Sorted Elements
8.Exit
Enter your Choice: 3
------------------
(program exited with code: 1)
Press return to continue
More C++ Programs: