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

Pong Game in HTML & JavaScript (Updated)

HTML Pong Game Gameplay Pong is one of the first games that many people from the 80s or 90s had played as children. Lots of people know it as a simple arcade game but what they probably do not know is that this simple game helped establish the video game industry! In this post, we'll be making our version of a very simple but fully working Pong game in HTML, CSS and JavaScript. Basic Game Structure Games, however simple or complex they may be, follow the basic Game Loop design as shown in the chart below. Event-oriented game engines usually encapsulate the design and provide you with an event mechanism for handling various parts like the input, update, and rendering but internally the basic design is being followed. Pong Game Loop For our Game Loop, we'll be using JavaScript setInterval so that the game code remains asynchronous and separate. As you may have guessed a while (or any other loop) will freeze the page. For our input, we'll be using onmousemove event to update t