Friday, May 29, 2020

Shell Sort Using C++ STL

Here is a shell sort program was written by my good friend Tom from the United Kingdom using C++ STL. Thank you Tom for sharing your code to us.

I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, IT projects, school and application development, programming projects, thesis, and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.My mobile number here in the Philippines is 09173084360. My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price. My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.comI am also a book author you can purchase my books on computer programming and information technology in the following links below.
https://www.unlimitedbooksph.com/


Program Listing

#include <iostream>
#include <vector>
#include <algorithm>
#include <iterator>

using namespace std;

enum class SortOrder
{
   Ascending,
   Descending
};

// based on https://gist.github.com/svdamani/dc57e4d1b00342d4507d
template <class Iter>
inline void selection_sort(Iter first, Iter last, SortOrder order)
{
   while (first != last)
   {
     if (order == SortOrder::Ascending)
       std::iter_swap(first, std::min_element(first, last));
     else
       std::iter_swap(first, std::max_element(first, last));

   ++first;
   }
}

int main()
{
   cout << "Original vector of Numbers\n";
   vector<int> v = { 2, 1, 5, 10, 3 };
   copy(begin(v), end(v), ostream_iterator<int>(cout, " "));

   cout << "\n\nVector sorted in ascending order:\n";
   selection_sort(begin(v), end(v), SortOrder::Ascending);
   copy(begin(v), end(v), ostream_iterator<int>(cout, " "));

   cout << "\n\nVector sorted in descending order:\n";
   selection_sort(begin(v), end(v), SortOrder::Descending);

   copy(begin(v), end(v), ostream_iterator<int>(cout, " "));

   cout << "\n\n";
   system("PAUSE");
}



No comments:

Post a Comment