Skip to main content

Posts

Showing posts with the label selection sort in c

Selection Sort Algorithm in C

SELECTION SORT : There are several methods for sorting an array, selection sort is one of them. Let us take an unsorted list of elements and sort them by applying this algorithm. Elements of the array -                                                                   9        3        6       7       1        5 Pass 1:               9        3       6       7       1        5                 arr[0] > arr[1],  Exchange               3        9      ...