Selection Sort Algorithm for Absolute Beginners

Discussion in 'C++' started by ManzZup, Feb 24, 2012.

  1. ManzZup

    ManzZup New Member

    Joined:
    May 9, 2009
    Messages:
    278
    Likes Received:
    43
    Trophy Points:
    0
    Occupation:
    Production Manager:Software @ ZONTEK
    Location:
    Sri Lanka
    Home Page:
    http://zontek.zzl.org
    From the Bubble sort it was obvious that the sorting isn't efficient for larger list, even for a list more than 100 numbers [although you wont see any difference on a good machine]. So there's another lot of sorting algorithms out there and this is just one of them

    Selection Sort



    Once you see the way Selection sort works, you'll wonder why one would use this instead of Bubble Sort although the efficiency is roughly the same. Well i guess your thinking is correct, but there can be instances when "swapping" the two elements of the sequence is extremely CPU consuming bothersome [when it comes to pointers and stuff specially]. So instead you would go with an algorithm like this that will swap only when needed. For everyones sake let's go into the algorithm step by step.

    How Selection Sort Works?

    Just like the Bubble Sort the implementation and the idea behind is extremely simple. The following method will be used:
    1. Loop the no. of elements times (that's loop 10 times if there are 10 numbers in the sequence).
    2. Find the minimum number in each case (That's you loop again in the whole array starting from one element after the current element and till end to search for a value smaller than the current element)
    3. If there's a minimum, swap the minimum with the current, so always the minimum would go the front of the list.
    Ex: Sort a set of numbers {5,6,3,4,2} using Selection Sort
    • {5,6,3,4,2} First we start our main loop to iterate though the sequence, and we find number 5. We store the number and the index.
    • {5,6,3,4,2} Now we go searching in the REST OF THE NUMBERS to find a smaller value. We start from 6 as it's the immediate one after 5 (current element)
    • {5,6,3,4,2} 6 > 5 so the no minimum found yet, then move to next and it is 3. Yeah 3 < 5 a min. We swap now? NO. we store it as our minimum.
    • {5,6,3,4,2} Next we get 4, as 4 > 3, min is still 3, then we find 2 and 2 < 3 so clearly 2 is the minimum in the list (inner loop ends now). Now we swap the places of 2 and 5.
    • {2,6,3,4,5} Next in our main loop we continue and we find 6. Again go scanning this time starting with 3 as it is the immediate one after 6. We find 3 as the smallest from the sequence (excluding 2,6). And we swap.
    • {2,3,6,4,5} Likewise we go till the main loop is over and we get the sorted array.
    • {2,3,4,5,6} There's a little increase of the efficiency but let's go there later.

    The Code



    Pseudo-code

    Code:
    S : sequence of sortable items
    N : number of items
    for i = 0 to N-1 do
            min = S[i];
            min_index = i;
           
            for j=i+1 to N-1 do
                    if(S[j] < min)
                            min = S[j];
                            min_index = j;
                    end if
            end for
            S[min_index] = S[i];
            S[i] = min;    
    end for
    
    Explanation

    First we take the sequence of numbers to a list or suitable data structure, in this case an Array (S). Then we take the number of elements as N (In most of the real problems this number will be given as some language like c++ wont allow you to directly get the size of an array)
    • Line 4: We start the main loop to iterate though the array
    • Line 5: We store the current value as the temporary minimum, because the minimum of the list, if no the current item should always be lower than this.
    • Line 6: We also save the index of the min for swapping's sake
    • Line 8: Start the inner cycle, remember we ALWAYS start the loop from 1 element above the current that is i+1 because the elements before the current is always sorted (or no element before the current if this is the first one)
    • Line 9 - 12: if there's a minimum we update the min and min index values
    • Line 15 - 16: At the end of the main loop we swap the current element with the minimum so that comes to the front. See it's just as another flavor of BBS :D
    Now again the shooters part, so without just rolling down, try implementing this in your favorite language :)

    Implementation of Selection Sort in C++

    Code:
    #include<iostream>
    using namespace std;
    int main(){
        int S[] = {10,20,50,30,40,65};
        int N = sizeof(S)/sizeof(int);
       
        for(int i=0;i<N;i++){
                int min = S[i];
                int min_index = i;
               
                for(int j=i+1;j<N;j++){
                        if(S[j] < min){
                                min = S[j];
                                min_index = j;
                        }
                }
                S[min_index] = S[i];
                S[i] = min;
        }
       
        //Below code is not part of the algorithm
        for(int i=0;i<N;i++){
                cout << S[i] << " ";
        }
    }
    Implementation of Selection Sort in Java

    Code:
    class SelectionSort{
            public static void main(String args[]){
                    int S[] = {10,20,50,30,40,65};
                    int N = S.length;
                   
                    for(int i=0;i<N;i++){
                            int min = S[i];
                            int min_index = i;
                           
                            for(int j=i+1;j<N-1;j++){
                                    if(S[j] < min){
                                            min = S[j];
                                            min_index = j;
                                    }
                            }
                           
                            S[min_index] = S[i];
                            S[i] = min;
                    }
                   
                    for(int x:S){
                            System.out.print(x + " ");
                    }
            }
    }
    Code:
    Output : 10 20 30 40 50 65
    

    Efficiency of Selection Sort in BIG O :



    Now again as we are done with the awesome part, lets get into the but of boring[but most important] part of the tutorial. That is calculating the efficiency. As we take the usual assumptions about the CPU cycles ( O(1) == 1 CPU call), at a glace we could deduce those.

    We have the main loop so it goes number-of-element times, taking as n
    although we have the assignments (that is equaling, int i=9 like that) we dont count them as a major part of the algorithm as they are considerably smaller .

    Then we have a inner loop that is reducing every time we advance the loop.
    So we do a little OL math, we have a arithmetic sequence which reduces by 1 after each cycle. So we need to take the some of it i.e. n + (n-1) + (n-2) + ....... + 1 == (n-1)/2

    In other words sum of numbers 1 to n when we put al together we get : n(n-1)/2

    Now we comes to some rules of BIG Oh it says we can simply neglec constants like 1,10,k because they wont alter the efficiency depending on the size of the input
    so we renew the math to this : n^2 + n (the /2 is gone)

    Now we see that when compares to n^2, n is smaller, so we make it more cleaner as this n^2 and it becomes the time complexity of the Selection Sort (well for the worst case)

    Worst Case : О(n^2)
    Average : О(n log n )

    when we take log n it means, if
    n == 4, log n = 2
    n == 64, log n = 6 like that

    So here comes the end of another booming chapter :D Well after this comes some harder kind of sorts and well i dont want to bore you with for ever sorting, so there will be some searching stuff as well. For now, good night ;) :D
     
  2. tinytomhanks

    tinytomhanks Banned

    Joined:
    Apr 20, 2012
    Messages:
    6
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    business admin
    Location:
    US and India
    Home Page:
    http://www.itchimes.com/
    Nice discussion and implementation. You are right, I think selection sort is the easiest in implement and manipulate. Scholars mostly start learning sorting technique with it.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice