Skip to main content

Sorting an array using Selection Sort

Sorting is the process by which the elements of a group (ex. Arrays) are arranged in a specific order (ascending or descending).

The process of sorting is very important, since it is needed in many types of programs. Ex. If you need to arrange the heights of various students in a class, you need to sort their heights.

While there are quite a few methods employed for sorting, we will be discussing about Selection Sort method in this article.

In selection sort, all the elements of an array are compared with the other elements following it and interchanged so that smaller elements come at the top.

So, what that means is that the first element is compared with the second, third … elements then the next is selected (second element of the array) and it is compared with the third, fourth … elements and in this way different elements are selected serially and compared with elements following it. Interchange is done so that smaller elements come high up in the array. (for ascending order)

To make this process clear, let us consider this array: a rr[4]={4,5,3,2}

Steps for sorting this array are outlined below:

  1. The first element of the array is selected and compared with the other elements following it and interchanged if required so that the smallest elements comes at the top. Now, arr[4]={2,5,4,3}
  2. Again the same process is repeated taking the next element (second element of the array) as the selected element and comparing it with the elements following it (i.e. 4,3). Now, arr[4]={2,3,5,4}
  3. Same process is repeated again. Now, arr[4]={2,3,4,5}

The array has been sorted.

In the program below, I have programmed the sorting process as a separate function so that it would be easy for you to incorporate sorting function in your programs.

   //selection sort program in C++
   #include<iostream.h>
   void sel_sort (int *array,int n);
   void main(void)
   {
   int arr[10],i;
   cout<<"Input 10 Numbers: ";
   for (i=0;i<10;i++)
     cin>>arr[i];

   sel_sort(arr,10);

   for (i=0;i<10;i++)
     cout<<arr[i]<<" ";
   }
   //FUNCTION IS DEFINED HERE
   //this function takes two arguments
   //first argument is the pointer to
   //the array that has to be sorted
   //and the second is the number of
   //elements the array has.

   void sel_sort(int *array, int n)
   {
   int temp,i,j;

   for(i=0;i<(n-1);i++)
     for(j=i+1;j<(n);j++)
       {
       if(*(array+i)>*(array+j))
         {
         temp=*(array+i);
         *(array+i)=*(array+j);
         *(array+j)=temp;
         }
       }
   }

Here a pointer is used in the parameter of the function. This is because we cannot return an array from a function therefore we need to the modify (sort, in this case) the array that is being passed to the function.

That means, we are not modifying any variables, we are just modifying the contents of the memory address that is being passed as a pointer.

Hope this helps!

Related Articles:

Popular posts from this blog

Fix For Toshiba Satellite "RTC Battery is Low" Error (with Pictures)

RTC Battery is Low Error on a Toshiba Satellite laptop "RTC Battery is Low..." An error message flashing while you try to boot your laptop is enough to panic many people. But worry not! "RTC Battery" stands for Real-Time Clock battery which almost all laptops and PCs have on their motherboard to power the clock and sometimes to also keep the CMOS settings from getting erased while the system is switched off.  It is not uncommon for these batteries to last for years before requiring a replacement as the clock consumes very less power. And contrary to what some people tell you - they are not rechargeable or getting charged while your computer or laptop is running. In this article, we'll learn everything about RTC batteries and how to fix the error on your Toshiba Satellite laptop. What is an RTC Battery? RTC or CMOS batteries are small coin-shaped lithium batteries with a 3-volts output. Most laptops use

The Best Way(s) to Comment out PHP/HTML Code

PHP supports various styles of comments. Please check the following example: <?php // Single line comment code (); # Single line Comment code2 (); /* Multi Line comment code(); The code inside doesn't run */ // /* This doesn NOT start a multi-line comment block /* Multi line comment block The following line still ends the multi-line comment block //*/ The " # " comment style, though, is rarely used. Do note, in the example, that anything (even a multi-block comment /* ) after a " // " or " # " is a comment, and /* */ around any single-line comment overrides it. This information will come in handy when we learn about some neat tricks next. Comment out PHP Code Blocks Check the following code <?php //* Toggle line if ( 1 ) {      // } else {      // } //*/ //* Toggle line if ( 2 ) {      // } else {      // } //*/ Now see how easy it is to toggle a part of PHP code by just removing or adding a single " / " from th

Introduction to Operator Overloading in C++

a1 = a2 + a3; The above operation is valid, as you know if a1, a2 and a3 are instances of in-built Data Types . But what if those are, say objects of a Class ; is the operation valid? Yes, it is, if you overload the ‘+’ Operator in the class, to which a1, a2 and a3 belong. Operator overloading is used to give special meaning to the commonly used operators (such as +, -, * etc.) with respect to a class. By overloading operators, we can control or define how an operator should operate on data with respect to a class. Operators are overloaded in C++ by creating operator functions either as a member or a s a Friend Function of a class. Since creating member operator functions are easier, we’ll be using that method in this article. As I said operator functions are declared using the following general form: ret-type operator#(arg-list); and then defining it as a normal member function. Here, ret-type is commonly the name of the class itself as the ope